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