UNPKG

402 BTypeScriptView Raw
1import { BufferedProcess, NodeProcessOptions } from '../index';
2
3/**
4 * Like BufferedProcess, but accepts a Node script as the command to run.
5 * This is necessary on Windows since it doesn't support shebang #! lines.
6 */
7export class BufferedNodeProcess extends BufferedProcess {
8 /** Runs the given Node script by spawning a new child process. */
9 constructor(options: NodeProcessOptions);
10}