UNPKG

create-oclif

Version:

oclif: create your own CLI

20 lines (19 loc) 524 B
import Base from '../command-base'; export interface Options { name: string; defaults?: boolean; force?: boolean; } export default abstract class AppCommand extends Base { static description: string; static flags: { defaults: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; force: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; }; static args: { name: string; description: string; required: boolean; }[]; run(): Promise<void>; }