blob: d706694cf2cd00b05806c1d7304eafdfb94e07d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/// <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[];
};
}
|