refactor: cleanup import
authorJérôme Benoit <jerome.benoit@sap.com>
Fri, 5 May 2023 14:12:38 +0000 (16:12 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Fri, 5 May 2023 14:12:38 +0000 (16:12 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/worker/abstract-worker.ts

index df263b6d14ebba49768dbaea88a7e6e924f1a78d..1a2a15599d301df8c929d92ad5846c46c9531650 100644 (file)
@@ -1,12 +1,12 @@
 import { AsyncResource } from 'node:async_hooks'
 import type { Worker } from 'node:cluster'
 import type { MessagePort } from 'node:worker_threads'
-import {
-  type MessageValue,
-  type TaskFunctions,
-  type WorkerAsyncFunction,
-  type WorkerFunction,
-  type WorkerSyncFunction
+import type {
+  MessageValue,
+  TaskFunctions,
+  WorkerAsyncFunction,
+  WorkerFunction,
+  WorkerSyncFunction
 } from '../utility-types'
 import { EMPTY_FUNCTION } from '../utils'
 import type { KillBehavior, WorkerOptions } from './worker-options'