import type { Predicate } from "@thi.ng/api"; import type { Reducer } from "./api.js"; /** * Similar to {@link every} reducer, but only requires at least 1 value to * succeed predicate test (and then immediately terminates with `true` as * result). * * @param pred - */ export declare function some(pred?: Predicate): Reducer; export declare function some(src: Iterable): boolean; export declare function some(pred: Predicate, src: Iterable): boolean; //# sourceMappingURL=some.d.ts.map