refactor: code cleanups
[poolifier.git] / examples / typescript / http-server-pool / express-worker_threads / src / pool.ts
index 98ae657d4a764bc39e07650db35add4c92718be5..0f6a7accb63ce881e49a3a06b34647297fd6a064 100644 (file)
@@ -3,11 +3,7 @@ import { fileURLToPath } from 'node:url'
 
 import { availableParallelism, DynamicThreadPool } from 'poolifier'
 
-import {
-  type BodyPayload,
-  type WorkerData,
-  type WorkerResponse
-} from './types.js'
+import type { BodyPayload, WorkerData, WorkerResponse } from './types.js'
 
 const workerFile = join(
   dirname(fileURLToPath(import.meta.url)),