UNPKG

720 BTypeScriptView Raw
1import BaseLegacyCommand from '../base-legacy-command';
2declare const noOpen = "no-open";
3declare const noInstall = "no-install";
4declare const noWatcher = "no-watcher";
5export default class Start extends BaseLegacyCommand {
6 static description: string;
7 static flags: {
8 help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
9 force: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
10 [noOpen]: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
11 [noInstall]: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
12 [noWatcher]: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
13 };
14 static args: never[];
15 run(): Promise<void>;
16}
17export {};