Interface Delete<Ext>

interface Delete<Ext> {
    _tag: "Delete";
    extensions: null | Ext["Delete"];
    table: ast.Ident;
    where: null | Expr<Ext>;
}

Type Parameters

Hierarchy

  • Tagged<"Delete", {
        extensions: Ext["Delete"] | null;
        table: ast.Ident;
        where: Expr<Ext> | null;
    }>
    • Delete

Properties

_tag: "Delete"
extensions: null | Ext["Delete"]
table: ast.Ident
where: null | Expr<Ext>

Generated using TypeDoc