/** * Worker Pool Module - Node Entry (Stub) * * Node.js doesn't need a worker pool for compression since zlib * already uses the libuv thread pool internally. * * This stub exports a no-op implementation for API parity. */ export type { WorkerPoolOptions, WorkerPoolStats, TaskOptions, TaskResult, WorkerTaskType } from "./types.js"; export { hasWorkerSupport, createAbortError } from "./pool.base.js"; /** * Node.js stub - throws if called */ export declare class WorkerPool { constructor(); execute(): never; getStats(): never; terminate(): void; isTerminated(): boolean; } export declare function getDefaultWorkerPool(): never; export declare function terminateDefaultWorkerPool(): void; export declare function deflateWithPool(): Promise; export declare function inflateWithPool(): Promise; export declare function deflateBatchWithPool(): Promise; export declare function inflateBatchWithPool(): Promise;