From c78998b4173ccff3f537edf4c6a389f87998493e Mon Sep 17 00:00:00 2001 From: Daniel Imfeld Date: Sun, 16 Jan 2022 19:08:28 -1000 Subject: [PATCH] Add `variable` to `Column` type --- typescript/pg-promise.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typescript/pg-promise.d.ts b/typescript/pg-promise.d.ts index 77b74836..38e745bc 100644 --- a/typescript/pg-promise.d.ts +++ b/typescript/pg-promise.d.ts @@ -166,6 +166,7 @@ declare namespace pgPromise { readonly def: any; readonly castText: string; readonly escapedName: string; + readonly variable: string; readonly init: (col: IColumnDescriptor) => any readonly skip: (col: IColumnDescriptor) => boolean