Skip to content

ArgDefinitionByKind

Maps each ArgKind to its definition shape.

Signatures

ts
interface ArgDefinitionByKind {}

Members

Properties

boolean

Definition shape for boolean args.

ts
boolean: BooleanArgDefinition;

custom

Definition shape for custom args.

ts
custom: CustomArgDefinition;

enum

Definition shape for enum args.

ts
enum: EnumArgDefinition;

keyValue

Definition shape for keyValue args.

ts
keyValue: KeyValueArgDefinition;

number

Definition shape for number args.

ts
number: NumberArgDefinition;

string

Definition shape for string args.

ts
string: StringArgDefinition;

See Also

Released under the MIT License.