From: Jérôme Benoit Date: Wed, 5 Apr 2023 12:54:41 +0000 (+0200) Subject: refactor: cleanup type import X-Git-Tag: v2.4.2~19 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=5919b303c0afd78ae8d980b2661a9f23b6377425;hp=79aafe9fe0d0c4c40da43337b0a8c358f5f834ce;p=poolifier.git refactor: cleanup type import Signed-off-by: Jérôme Benoit --- diff --git a/src/worker/abstract-worker.ts b/src/worker/abstract-worker.ts index bf81a9f2..6a7a4325 100644 --- a/src/worker/abstract-worker.ts +++ b/src/worker/abstract-worker.ts @@ -3,7 +3,7 @@ import type { Worker } from 'node:cluster' import type { MessagePort } from 'node:worker_threads' import type { MessageValue } from '../utility-types' import { EMPTY_FUNCTION } from '../utils' -import { type KillBehavior, type WorkerOptions } from './worker-options' +import type { KillBehavior, WorkerOptions } from './worker-options' import { KillBehaviors } from './worker-options' const DEFAULT_MAX_INACTIVE_TIME = 60000