fork.d.ts 178 Bytes Raw Blame History Permalink 1 2 3 4 5 6 /// <reference types="node" /> interface IOpts { scriptPath: string; } export default function start({ scriptPath }: IOpts): import("child_process").ChildProcess; export {};