@intlayer/chokidar
Version:
Uses chokidar to scan and build Intlayer declaration files into dictionaries based on Intlayer configuration.
20 lines (19 loc) • 700 B
TypeScript
import { ChildProcess, SpawnOptions } from "node:child_process";
//#region src/utils/runParallel/spawnPosix.d.ts
/**
* Launches a new process with the given command.
* This is almost same as `child_process.spawn`.
*
* This returns a `ChildProcess` instance.
* `kill` method of the instance kills the new process and its sub processes.
*
* @param command - The command to run.
* @param args - List of string arguments.
* @param options - Options.
* @returns A ChildProcess instance of new process.
* @private
*/
declare const spawnPosix: (command: string, args: string[], options: SpawnOptions) => ChildProcess;
//#endregion
export { spawnPosix };
//# sourceMappingURL=spawnPosix.d.ts.map