Definition for each parameter expected by the custom command.
export interface CustomCommandParameter { enumName?: string; name: string; type: CustomCommandParamType;} Copy
export interface CustomCommandParameter { enumName?: string; name: string; type: CustomCommandParamType;}
Optional
Beta
Can be used to reference the enum name when CustomCommandParamType is 'Enum'. Allows the parameter name to be different from the enum name.
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