UNPKG

648 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 [noOpen]: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
10 [noInstall]: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
11 [noWatcher]: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
12 };
13 static args: never[];
14 run(): Promise<void>;
15}
16export {};