CommandArgEntry
A named positional argument entry in the command schema.
Pairs a user-facing arg name with its ArgSchema descriptor. The array ordering in CommandSchema.args determines CLI position.
- Import:
@kjanat/dreamcli - Export kind: interface
- Declared in:
src/core/schema/command.ts - Source link:
packages/dreamcli/src/core/schema/command.ts:484
Signatures
ts
interface CommandArgEntry {}Members
Properties
name
User-facing argument name (shown in help as <name>).
ts
name: string;schema
Runtime descriptor controlling parsing, presence, and coercion.
ts
schema: ArgSchema;