X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=inline;f=src%2Fpools%2Fthread%2Ffixed.ts;h=78912c2b03d11537bebce5cc0576d058157321af;hb=bcf1c155ec2e2d9208c8f818abd031662bd61d7f;hp=38dee9f02605f21847bdd3bd0d5303f2824b4dcb;hpb=369179f64c3ff184193bde82102acb22e61ffb78;p=poolifier.git diff --git a/src/pools/thread/fixed.ts b/src/pools/thread/fixed.ts index 38dee9f0..78912c2b 100644 --- a/src/pools/thread/fixed.ts +++ b/src/pools/thread/fixed.ts @@ -1,8 +1,9 @@ import { + isMainThread, type TransferListItem, - type Worker, - isMainThread + type Worker } from 'node:worker_threads' + import type { MessageValue } from '../../utility-types.js' import { AbstractPool } from '../abstract-pool.js' import { type PoolOptions, type PoolType, PoolTypes } from '../pool.js'