UNPKG

493 BTypeScriptView Raw
1import { Command, flags } from '@oclif/command';
2export default class Hello extends Command {
3 static description: string;
4 static examples: string[];
5 static flags: {
6 help: import("../../node_modules/@oclif/parser/lib/flags").IBooleanFlag<void>;
7 name: flags.IOptionFlag<string | undefined>;
8 force: import("../../node_modules/@oclif/parser/lib/flags").IBooleanFlag<boolean>;
9 };
10 static args: {
11 name: string;
12 }[];
13 run(): Promise<void>;
14}