import Predicate from "./Predicate"; /** * Predicate implementation that returns true if any of the predicates return true. * If the array of predicates is empty, then this predicate returns false. */ export default class AnyPredicate extends Predicate { predicates: Array>; constructor(...predicates: Array>); evaluate(input: T): boolean; } //# sourceMappingURL=AnyPredicate.d.ts.map