smartspawn/dist/smartipc.classes.threadsimple.d.ts

9 lines
331 B
TypeScript
Raw Normal View History

2017-03-04 10:40:32 +00:00
import * as childProcess from 'child_process';
export declare class ThreadSimple {
workerPath: string;
threadChildProcess: childProcess.ChildProcess;
2017-03-04 11:24:32 +00:00
forkOptions: childProcess.ForkOptions;
constructor(filePathArg: string, forkOptionsArg?: childProcess.ForkOptions);
2017-03-04 11:05:53 +00:00
run(): Promise<childProcess.ChildProcess>;
2017-03-04 10:40:32 +00:00
}