interface PositionalArgument {
    defaultValue?: string;
    description: string;
    name: string;
    required: boolean;
    type: PositionalArgumentType;
}

Properties

defaultValue?: string

Positional argument default value.

description: string

Description of the positional argument.

name: string

Name of the positional argument.

required: boolean

Whether the positional argument is required. Defaults to true when PositionalArgument.defaultValue is not defined.

Type of the positional argument.