1 | import BaseCommand from '../../base-command';
|
2 | declare const enum TType {
|
3 | Component = 0,
|
4 | Function = 1
|
5 | }
|
6 | export default class GenerateIndex extends BaseCommand {
|
7 | static description: string;
|
8 | static aliases: string[];
|
9 | static flags: {
|
10 | help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
|
11 | path: import("@oclif/command/lib/flags").IOptionFlag<string | undefined>;
|
12 | silent: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
|
13 | };
|
14 | static args: never[];
|
15 | run(): Promise<any>;
|
16 | askForType(): Promise<TType>;
|
17 | }
|
18 | export {};
|