frontend
    Preparing search index...

    Interface CliLogEntry

    A single entry in the CLI terminal log.

    interface CliLogEntry {
        id: number;
        text: string;
        type: "input" | "output" | "error";
    }
    Index

    Properties

    Properties

    id: number

    Unique identifier for React key.

    text: string

    Text content to display.

    type: "input" | "output" | "error"

    Entry type: input (user command), output (game state), or error.