1 | import BaseCommand from '../../base-command';
|
2 | export default class GenerateFunction extends BaseCommand {
|
3 | static description: string;
|
4 | static aliases: string[];
|
5 | static flags: {
|
6 | help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
|
7 | path: import("@oclif/command/lib/flags").IOptionFlag<string | undefined>;
|
8 | silent: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
|
9 | };
|
10 | static args: {
|
11 | name: string;
|
12 | }[];
|
13 | run(): Promise<void>;
|
14 | askForName(): Promise<string>;
|
15 | }
|