Definition for each parameter expected by the custom command.
export interface CustomCommandParameter { name: string; type: CustomCommandParamType;} Copy
export interface CustomCommandParameter { name: string; type: CustomCommandParamType;}
The name of parameter as it appears on the command line.
The data type of the parameter.
Definition for each parameter expected by the custom command.
Source