From: Jérôme Benoit Date: Fri, 5 May 2023 14:12:38 +0000 (+0200) Subject: refactor: cleanup import X-Git-Tag: v2.4.12~15^2~1 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=7b427d7348fce3ef4005d92676c1f9576b69f8de;p=poolifier.git refactor: cleanup import Signed-off-by: Jérôme Benoit --- diff --git a/src/worker/abstract-worker.ts b/src/worker/abstract-worker.ts index df263b6d..1a2a1559 100644 --- a/src/worker/abstract-worker.ts +++ b/src/worker/abstract-worker.ts @@ -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'