refactor: code cleanups
[poolifier.git] / examples / typescript / websocket-server-pool / ws-worker_threads / src / pool.ts
index 45d458d53f8993a8baf8697e8709abd64b679849..ac8b9c8657049774d9cccba0bf2173e1b6fe07d8 100644 (file)
@@ -3,11 +3,7 @@ import { fileURLToPath } from 'node:url'
 
 import { availableParallelism, DynamicThreadPool } from 'poolifier'
 
-import {
-  type DataPayload,
-  type WorkerData,
-  type WorkerResponse
-} from './types.js'
+import type { DataPayload, WorkerData, WorkerResponse } from './types.js'
 
 const workerFile = join(
   dirname(fileURLToPath(import.meta.url)),