docs: update benchmarks vs. external pools
[poolifier.git] / examples / typescript / pool.ts
index ab6d4f268b38a76520cf15b919948eae3e9eb924..93774422b4500459715ec236c136c1601f13add4 100644 (file)
@@ -1,11 +1,11 @@
 import { dirname, extname, join } from 'path'
 import { fileURLToPath } from 'url'
+import type { MyData, MyResponse } from './worker'
 import {
   DynamicThreadPool,
   FixedThreadPool,
   availableParallelism
 } from 'poolifier'
-import type { MyData, MyResponse } from './worker'
 
 const workerFile = join(
   dirname(fileURLToPath(import.meta.url)),