refactor: cleanup type import
[poolifier.git] / examples / typescript / websocket-server-pool / ws-hybrid / src / main.ts
index f6536bd0bbc3bbde78e8cd5bf68cfb48099e1fc6..3adac7e819b3c6a35fd5fbd6f40196ea1df2846b 100644 (file)
@@ -1,7 +1,7 @@
 import { dirname, extname, join } from 'node:path'
 import { fileURLToPath } from 'node:url'
 import { FixedClusterPool, availableParallelism } from 'poolifier'
-import { type ClusterWorkerData, type ClusterWorkerResponse } from './types.js'
+import type { ClusterWorkerData, ClusterWorkerResponse } from './types.js'
 
 const webSocketServerWorkerFile = join(
   dirname(fileURLToPath(import.meta.url)),