Interface ICommandDescriptor
Expand description
interface ICommandDescriptor {
id: string;
run: ICommandHandler;
}Properties§
§§
id: stringAn unique identifier of the contributed command.
run: ICommandHandlerCallback that will be executed when the command is triggered.
Description of a command contribution