Interface Update<Ext>

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

Type Parameters

Hierarchy

Properties

_tag: "Update"
assignments: [ast.Ident, ast.DefaultValue | Expr<Ext>][]
extensions: null | Ext["Update"]
table: ast.Ident
where: null | Expr<Ext>

Generated using TypeDoc