@oclif/plugin-help
Version:
Standard help for oclif.
13 lines (12 loc) • 442 B
TypeScript
import { Command } from '@oclif/core';
export default class HelpCommand extends Command {
static args: {
commands: import("@oclif/core/lib/interfaces/parser.js").Arg<string | undefined, Record<string, unknown>>;
};
static description: string;
static flags: {
'nested-commands': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
};
static strict: boolean;
run(): Promise<void>;
}