UNPKG

@huggingface/gguf

Version:

a GGUF parser that works on remotely hosted files

7 lines 240 B
/** * Execute queue of promises. * * Inspired by github.com/rxaviers/async-pool */ export declare function promisesQueue<T>(factories: (() => Promise<T>)[], concurrency: number): Promise<T[]>; //# sourceMappingURL=promisesQueue.d.ts.map