Interface InternalFilterOperator<K, TValue>

interface InternalFilterOperator<K extends PropertyKey, TValue> {
    __allowedKeys: K;
    "[FILTER_OPERATOR_TOKEN]": true;
    value: TValue;
    build(context: OperatorBuilderContext): Predicate;
}

Type Parameters

  • K extends PropertyKey
  • TValue

Properties

__allowedKeys: K
"[FILTER_OPERATOR_TOKEN]": true
value: TValue

Methods

  • Parameters

    • context: OperatorBuilderContext

    Returns Predicate