UNPKG

436 BTypeScriptView Raw
1import { CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../definitions';
2import { Command } from '../lib/command';
3export declare class GenerateCommand extends Command implements CommandPreRun {
4 getMetadata(): Promise<CommandMetadata>;
5 preRun(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
6 run(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
7}