UNPKG

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