From: Jérôme Benoit Date: Wed, 22 Nov 2023 21:42:32 +0000 (+0100) Subject: refactor: import sorting X-Git-Tag: v3.0.6~5 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=4c0fcebf5632d2b216cdcb090fa7aac7ced9a04a;p=poolifier.git refactor: import sorting --- diff --git a/examples/typescript/pool.ts b/examples/typescript/pool.ts index de49c93a..002bbbe2 100644 --- a/examples/typescript/pool.ts +++ b/examples/typescript/pool.ts @@ -1,11 +1,11 @@ import { dirname, extname, join } from 'node:path' import { fileURLToPath } from 'node: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)),