smartspawn/dist/smartipc.classes.threadsimple.d.ts
2017-03-04 12:05:53 +01:00

8 lines
245 B
TypeScript

import * as childProcess from 'child_process';
export declare class ThreadSimple {
workerPath: string;
threadChildProcess: childProcess.ChildProcess;
constructor(filePathArg: string);
run(): Promise<childProcess.ChildProcess>;
}