UNPKG

522 BTypeScriptView Raw
1import { flags } from '@oclif/command';
2import Base from './command-base';
3export default abstract class AppCommand extends Base {
4 static flags: {
5 defaults: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
6 options: flags.IOptionFlag<string | undefined>;
7 force: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
8 };
9 static args: {
10 name: string;
11 required: boolean;
12 description: string;
13 }[];
14 abstract type: string;
15 run(): Promise<void>;
16}