@nestjs/cli
Version:
Nest - modern, fast, powerful node.js web framework (@cli)
11 lines (10 loc) • 475 B
TypeScript
import { Input } from '../commands';
import { BuildAction } from './build.action';
export declare class StartAction extends BuildAction {
handle(commandInputs: Input[], commandOptions: Input[]): Promise<void>;
createOnSuccessHook(entryFile: string, sourceRoot: string, debugFlag: boolean | string | undefined, outDirName: string, binaryToRun: string, options: {
shell: boolean;
envFile?: string[];
}): () => void;
private spawnChildProcess;
}