ResolvedCommandParams
Payload for hooks that observe resolved inputs.
- Import:
@kjanat/dreamcli - Export kind: interface
- Declared in:
src/core/cli/plugin.ts - Source link:
packages/dreamcli/src/core/cli/plugin.ts:30
Signatures
ts
interface ResolvedCommandParams extends PluginCommandContext {}Members
Properties
args
Fully resolved argument values.
ts
args: Readonly<Record<string, unknown>>;command
Runtime command schema being executed.
ts
command: CommandSchema;deprecations
Structured deprecation warnings collected during resolution.
ts
deprecations: readonly DeprecationWarning[];flags
Fully resolved flag values.
ts
flags: Readonly<Record<string, unknown>>;meta
CLI metadata for this execution.
ts
meta: CommandMeta;out
Output channel for this execution.
ts
out: Out;