Type alias TerminalDBOutput

TerminalDBOutput: {
    id?: number;
    type: "output";
    value: undefined | string | {
        html: string;
    };
}

Represents the output of a terminal command in the database.

Type declaration

  • Optional id?: number

    The unique identifier of the output.

  • type: "output"

    The type of the output.

  • value: undefined | string | {
        html: string;
    }

    The value of the output. It can be undefined, a string, or an object with an HTML property.

Generated using TypeDoc