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