From 000ea5d3df7918af503e51055a58f59938efc93d Mon Sep 17 00:00:00 2001 From: Sam Adams Date: Wed, 21 Sep 2022 21:09:28 +0100 Subject: [PATCH] fix: add missing type for 'expirationChecker' on PgConnectionConfig --- types/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/index.d.ts b/types/index.d.ts index b246bbe587..ccfad9d139 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -3024,6 +3024,7 @@ export declare namespace Knex { connectionTimeoutMillis?: number; types?: PgCustomTypesConfig; options?: string; + expirationChecker?(): boolean; } type PgGetTypeParser = (oid: number, format: string) => any;