Files
airllm-fork-nodejs/node_modules/node-llama-cpp/dist/bindings/utils/asyncEvery.d.ts
2026-02-05 15:27:49 +08:00

6 lines
298 B
TypeScript

/**
* Returns a promise that resolves to true if every promise in the array resolves to true, otherwise false.
* Note that this function will not throw on error and instead will log the error to the console.
*/
export declare function asyncEvery(promises: Promise<boolean>[]): Promise<boolean>;