From 4c0fcebf5632d2b216cdcb090fa7aac7ced9a04a Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 22 Nov 2023 22:42:32 +0100 Subject: [PATCH] refactor: import sorting --- examples/typescript/pool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)), -- 2.34.1