UNPKG

oclif

Version:

oclif: create your own CLI

14 lines (13 loc) 374 B
import CommandBase from './../../command-base'; export default class GenerateCommand extends CommandBase { static description: string; static flags: { force: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; }; static args: { name: string; description: string; required: boolean; }[]; run(): Promise<void>; }