@skeel/launcher
    Preparing search index...

    Type Alias ChatPublicMessage

    Public presentation details for a chat message.

    type ChatPublicMessage = {
        action?: ChatAction;
        done: boolean;
        error?: string;
        kind: ChatMessageKind;
        parts?: ChatMessagePart[];
    }
    Index
    action?: ChatAction

    An external action to invoke before message processing may continue.

    done: boolean

    Indicates whether message processing is done.

    error?: string

    An error occurred during message processing.

    parts?: ChatMessagePart[]

    Display parts of the message.