1 | import { Input } from '../commands';
|
2 | import { BuildAction } from './build.action';
|
3 | export declare class StartAction extends BuildAction {
|
4 | handle(inputs: Input[], options: Input[]): Promise<void>;
|
5 | createOnSuccessHook(entryFile: string, sourceRoot: string, debugFlag: boolean | string | undefined, outDirName: string, binaryToRun?: string): () => void;
|
6 | private spawnChildProcess;
|
7 | private isSourceMapSupportPkgAvailable;
|
8 | }
|