Fix pg typing to reflect pg typing change (#5647)

see 

49fc830743/types/pg/index.d.ts (L24)

for updated type
This commit is contained in:
Josh Pike 2023-11-30 02:54:36 +07:00 committed by GitHub
parent 7b7fef55e8
commit 07589e9c3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
types/index.d.ts vendored
View File

@ -3046,7 +3046,7 @@ declare namespace Knex {
host?: string;
connectionString?: string;
keepAlive?: boolean;
stream?: stream.Duplex;
stream?: () => stream.Duplex | stream.Duplex | undefined;
statement_timeout?: false | number;
parseInputDatesAsUTC?: boolean;
ssl?: boolean | ConnectionOptions;