BeforeParseParams
Payload for beforeParse.
- Import:
@kjanat/dreamcli - Export kind: interface
- Declared in:
src/core/cli/plugin.ts - Source link:
packages/dreamcli/src/core/cli/plugin.ts:24
Signatures
ts
interface BeforeParseParams extends PluginCommandContext {}Members
Properties
argv
Raw argv that will be parsed for the leaf command.
ts
argv: readonly string[];command
Runtime command schema being executed.
ts
command: CommandSchema;meta
CLI metadata for this execution.
ts
meta: CommandMeta;out
Output channel for this execution.
ts
out: Out;