//#region src/utils/runParallel/index.d.ts export type ParallelHandle = { /** * Terminate the child and its whole process group. * @param signal Signal to send (default `SIGTERM`). Pass `SIGKILL` to force-kill * a child that ignores graceful termination. */ kill: (signal?: NodeJS.Signals) => void; result: Promise; commandText: string; }; /** * Start a cross-platform parallel process using npm-run-all approach. * Accepts either a single string (e.g., 'next start') or an array of tokens (e.g., ['next', 'start']). */ export declare const runParallel: (proc?: string | string[]) => ParallelHandle; //#endregion //# sourceMappingURL=index.d.ts.map