import { Predicate } from "@tsplus/stdlib/data/Predicate"; import { List } from "@tsplus/stdlib/collections/List/definition"; /** * Determines whether a predicate is satisfied for all elements of this List. * @tsplus static List.Aspects forAny * @tsplus pipeable List forAny * @tsplus location "@tsplus/stdlib/collections/List/forAny" */ export declare function forAny(f: Predicate): (self: List) => boolean; //# sourceMappingURL=forAny.d.ts.map