Type alias TerminalDBCommand

TerminalDBCommand: {
    id?: number;
    type: "command";
    value: string;
}

Represents a command in the terminal database.

Type declaration

  • Optional id?: number

    The unique identifier of the command.

  • type: "command"

    The type of the command.

  • value: string

    The value of the command.

Generated using TypeDoc