ArgDefinitionByKind
Maps each ArgKind to its definition shape.
- Import:
@kjanat/dreamcli - Export kind: interface
- Declared in:
src/core/schema/arg.ts - Source link:
src/core/schema/arg.ts:480
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;