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

8 lines
245 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;
constructor(filePathArg: string);
2017-03-04 11:05:53 +00:00
run(): Promise<childProcess.ChildProcess>;
2017-03-04 10:40:32 +00:00
}