Skip to content

ResolvedCommandParams

Payload for hooks that observe resolved inputs.

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;

See Also

Released under the MIT License.