Documentation
    Preparing search index...

    Variable predicateConst

    predicate: {
        and: <T>(...predicates: Predicate<T>[]) => Predicate<T>;
        contains: <T extends string>(criteria: T) => Predicate<string>;
        equal: <T>(criteria: T) => (value?: T | null) => value is T;
        matchRegExp: <T extends string>(criteria: RegExp) => Predicate<string>;
        not: <T>(predicate: Predicate<T>) => Predicate<T>;
        or: <T>(...predicates: Predicate<T>[]) => Predicate<T>;
    } = ...

    Type Declaration