refactor: cleanup type import
[poolifier.git] / examples / typescript / http-client-pool / src / main.ts
index 8217434fddd4af8cf4b3c6b3a2722c373bda2494..41028e630fca19b8759790d8bfb5c30b5e773c9a 100644 (file)
@@ -1,6 +1,6 @@
 import { availableParallelism } from 'poolifier'
 import { httpClientPool } from './pool.js'
-import { type WorkerResponse } from './types.js'
+import type { WorkerResponse } from './types.js'
 
 const parallelism = availableParallelism() * 2
 const requestUrl = 'http://localhost:8080/'