Event that fires after viewer executes the command.

interface CommandEvent {
    args: any[];
    data: string;
    type: "command";
}

Properties

Properties

args: any[]

Command arguments.

data: string

Command name.

type: "command"

Event type.