UNPKG

@fcamblor/concurrently

Version:
18 lines (17 loc) 511 B
/// <reference types="node" /> import EventEmitter from 'events'; import { Command } from '../command'; import { FlowController } from './flow-controller'; /** * Watches the main concurrently process for signals and sends the same signal down to each spawned * command. */ export declare class KillOnSignal implements FlowController { private readonly process; constructor({ process }: { process: EventEmitter; }); handle(commands: Command[]): { commands: Command[]; }; }