StringArgElementConfig
The element config arg.keyValue() assumes when given no element builder: an unconstrained string.
- Import:
@kjanat/dreamcli - Export kind: type
- Declared in:
src/core/schema/arg.ts - Source link:
src/core/schema/arg.ts:137
Signatures
ts
type StringArgElementConfig = unknown;Members
Properties
argKind
Element kind discriminator.
ts
argKind: "string";elementEligible
Elements are element-eligible by construction.
ts
elementEligible: true;presence
Elements carry no presence of their own.
ts
presence: "required";valueType
Element value type.
ts
valueType: string;variadic
Elements are never variadic on their own.
ts
variadic: false;