fork.d.ts 178 Bytes
/// <reference types="node" />
interface IOpts {
    scriptPath: string;
}
export default function start({ scriptPath }: IOpts): import("child_process").ChildProcess;
export {};