Interface NullNode<TField>Experimental

interface NullNode<TField> {
    kind: "null";
    operand: PropertyNode<TField>;
    operator: "is-null" | "is-not-null";
}

Type Parameters

  • TField extends string = string

Properties

Properties

kind
operator: "is-null" | "is-not-null"