export interface IPredicate { check(o: TItem): boolean; } export interface IPredicateFunction { (o: TItem): boolean; }