From 6aa965410950d1a7b0c60b9207a128036a05f4b8 Mon Sep 17 00:00:00 2001 From: Gustavo Henke Date: Sun, 2 Jan 2022 19:54:18 +1100 Subject: [PATCH] Expose more things in the main package export --- src/index.ts | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index ca13be25..0b4b9f5e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ import { Readable } from 'stream'; -import { CommandIdentifier } from './command'; -import { concurrently, ConcurrentlyCommandInput, ConcurrentlyOptions as BaseConcurrentlyOptions } from './concurrently'; +import { CloseEvent, Command, CommandIdentifier, TimerEvent } from './command'; +import { concurrently, ConcurrentlyCommandInput, ConcurrentlyOptions as BaseConcurrentlyOptions, ConcurrentlyResult } from './concurrently'; import { FlowController } from './flow-control/flow-controller'; import { InputHandler } from './flow-control/input-handler'; import { KillOnSignal } from './flow-control/kill-on-signal'; @@ -125,11 +125,21 @@ export default (commands: ConcurrentlyCommandInput[], options: Partial