Interface UICommand

Defines a command for the UI, to be interpreted by the client.

Export

UICommand

interface UICommand {
    commandId: string;
    targetElementId?: string;
    payload: Record<string, any>;
    metadata?: Record<string, any>;
}

Properties

commandId: string
targetElementId?: string
payload: Record<string, any>
metadata?: Record<string, any>