UNPKG

384 BTypeScriptView Raw
1import { Command } from '@oclif/command';
2export default class HelpCommand extends Command {
3 static description: string;
4 static flags: {
5 all: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
6 };
7 static args: {
8 name: string;
9 required: boolean;
10 description: string;
11 }[];
12 static strict: boolean;
13 run(): Promise<void>;
14}