ValuePredicate<_RT, MT>: {
    [K in AllFieldOperators]: K extends "between"
        ? ((inclusiveLowerBound, inclusiveUpperBound) => PredicateInternalsKey)
        : K extends "in" | "notIn"
            ? ((operand) => PredicateInternalsKey)
            : ((operand) => PredicateInternalsKey)
}

Type Parameters