CHANGELOG.md: update for next release
[poolifier.git] / examples / typescript / pool.ts
index 50dcc7b779d7118b27f42c56136fca509d58a7f6..8b29e3becaf7d73b3f15c35afc8b4b8c2834deb4 100644 (file)
@@ -1,7 +1,6 @@
-import { DynamicThreadPool, FixedThreadPool } from 'poolifier'
-import { MyData, MyResponse } from './worker'
-
 import { join } from 'path'
+import { DynamicThreadPool, FixedThreadPool } from 'poolifier'
+import type { MyData, MyResponse } from './worker'
 
 export const fixedPool = new FixedThreadPool<MyData, Promise<MyResponse>>(
   8,