@jellyfin/sdk
    Preparing search index...

    Interface MessageCommand

    A command to display a message on a client.

    interface MessageCommand {
        Header?: string | null;
        Text: string;
        TimeoutMs?: number | null;
    }
    Index
    Header?: string | null

    Gets or sets the message header.

    Text: string

    Gets or sets the message text.

    TimeoutMs?: number | null

    Gets or sets the timeout in milliseconds after which the message should be dismissed.