UNPKG

oclif

Version:

oclif: create your own CLI

12 lines (11 loc) 285 B
import CommandBase from './../command-base'; export default class Generate extends CommandBase { static description: string; static flags: {}; static args: { name: string; required: boolean; description: string; }[]; run(): Promise<void>; }