8 lines
236 B
TypeScript
8 lines
236 B
TypeScript
|
import * as childProcess from 'child_process';
|
||
|
export declare class ThreadSimple {
|
||
|
workerPath: string;
|
||
|
threadChildProcess: childProcess.ChildProcess;
|
||
|
constructor(filePathArg: string);
|
||
|
run(): childProcess.ChildProcess;
|
||
|
}
|