From 6fcd03c368f6e11c5179fb9c291c4cf944f43b24 Mon Sep 17 00:00:00 2001 From: Glen Takahashi Date: Wed, 5 Jan 2022 13:43:57 -0800 Subject: [PATCH] Add options config --- types/pg/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/pg/index.d.ts b/types/pg/index.d.ts index 3a9bee4621d849..97b5f225142863 100644 --- a/types/pg/index.d.ts +++ b/types/pg/index.d.ts @@ -31,6 +31,7 @@ export interface ClientConfig { application_name?: string | undefined; connectionTimeoutMillis?: number | undefined; types?: CustomTypesConfig | undefined; + options?: string | undefined; } export type ConnectionConfig = ClientConfig;