Definition for each parameter expected by the custom command.

interface CustomCommandParameter {
    enumName?: string;
    name: string;
    type: CustomCommandParamType;
}

Properties

Properties

enumName?: string

Can be used to reference the enum name when CustomCommandParamType is 'Enum'. Allows the parameter name to be different from the enum name.

name: string

The name of parameter as it appears on the command line.

The data type of the parameter.