| 1234567 |
- import { CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../definitions';
- import { Command } from '../lib/command';
- export declare class GenerateCommand extends Command implements CommandPreRun {
- getMetadata(): Promise<CommandMetadata>;
- preRun(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
- run(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
- }
|