update
This commit is contained in:
21
node_modules/concurrently/dist/src/flow-control/teardown.d.ts
generated
vendored
Normal file
21
node_modules/concurrently/dist/src/flow-control/teardown.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
import { Command, SpawnCommand } from '../command';
|
||||
import { Logger } from '../logger';
|
||||
import { FlowController } from './flow-controller';
|
||||
export declare class Teardown implements FlowController {
|
||||
private readonly logger;
|
||||
private readonly spawn;
|
||||
private readonly teardown;
|
||||
constructor({ logger, spawn, commands, }: {
|
||||
logger: Logger;
|
||||
/**
|
||||
* Which function to use to spawn commands.
|
||||
* Defaults to the same used by the rest of concurrently.
|
||||
*/
|
||||
spawn?: SpawnCommand;
|
||||
commands: readonly string[];
|
||||
});
|
||||
handle(commands: Command[]): {
|
||||
commands: Command[];
|
||||
onFinish: () => Promise<void>;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user