types: Declare ON CONFLICT ... DO NOTHING clause

This commit is contained in:
Tau
2021-02-03 23:43:36 +00:00
committed by da5669c09fdb0a288ba01e259a609d7779ac7fc9
parent 5f09c00eb4
commit 48aeb1c9d2
+2
View File
@@ -3,6 +3,8 @@ declare module "sql-bricks-postgres" {
export * from "sql-bricks";
interface OnConflictClause {
doNothing(): sql.Statement;
doUpdate(colNames: string[]): sql.Statement;
}