Interface IsNull<Ext>

IS [NOT] NULL

interface IsNull<Ext> {
    _tag: "IsNull";
    expr: Expr<Ext>;
    extensions: null | Ext["IsNull"];
    negated: boolean;
}

Type Parameters

Hierarchy

  • Tagged<"IsNull", {
        expr: Expr<Ext>;
        extensions: Ext["IsNull"] | null;
        negated: boolean;
    }>
    • IsNull

Properties

_tag: "IsNull"
expr: Expr<Ext>
extensions: null | Ext["IsNull"]
negated: boolean

Generated using TypeDoc