An arguments object for the commandExecuted signal.

interface ICommandExecutedArgs {
    args: ReadonlyPartialJSONObject;
    id: string;
    result: Promise<any>;
}

Properties

Properties

The arguments object passed to the command.

id: string

The id of the associated command.

result: Promise<any>

The promise which resolves with the result of the command.