From af051dc5f18dfa89273d1834a28082c37d5108cc Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 17 Oct 2023 22:30:00 +0200 Subject: [PATCH] refactor: cleanup exported modules MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index 3c8392b8..80274289 100644 --- a/src/index.ts +++ b/src/index.ts @@ -52,8 +52,8 @@ export { ThreadWorker } from './worker/thread-worker' export { KillBehaviors } from './worker/worker-options' export type { KillBehavior, - WorkerOptions, - KillHandler + KillHandler, + WorkerOptions } from './worker/worker-options' export type { TaskAsyncFunction, @@ -66,8 +66,8 @@ export type { MessageValue, PromiseResponseWrapper, Task, - WorkerError, TaskPerformance, + WorkerError, WorkerStatistics, Writable } from './utility-types' -- 2.34.1