interface RaiseStatement implements PGNodeimport { type RaiseStatement } from "https://deno.land/x/pgsql_ast_parser@12.0.1/syntax/ast.ts"; Propertiestype: "raise"optionallevel: | "debug" | "log" | "info" | "notice" | "warning" | "exception"format: stringoptionalformatExprs: Expr[] | niloptionalusing: { type: | "message" | "detail" | "hint" | "errcode" | "column" | "constraint" | "datatype" | "table" | "schema"; value: Expr; }[] | nil