Interface returned from custom command callback function.
export interface CustomCommandResult { message?: string; status: CustomCommandStatus;} Copy
export interface CustomCommandResult { message?: string; status: CustomCommandStatus;}
Optional
Message displayed to chat after command execution.
Command execution Success or Failure. Determines how the status message is displayed.
Interface returned from custom command callback function.
Source