types: Declare ON CONFLICT ... DO NOTHING clause

This commit is contained in:
Tau 2020-10-25 19:07:57 -04:00 committed by da5669c09fdb0a288ba01e259a609d7779ac7fc9
parent 5f09c00eb4
commit 48aeb1c9d2

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;
}