Update index.d.ts

This commit is contained in:
benny-medflyt 2019-05-27 08:30:21 -04:00 committed by GitHub
parent ece7645187
commit 726f6202fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

6
index.d.ts vendored
View File

@ -4,10 +4,10 @@ export interface ConnectionOptions {
host: string | null;
password?: string;
user?: string;
port: string | null;
port?: string | null;
database: string | null | undefined;
client_encoding?: string | undefined;
ssl?: boolean;
client_encoding?: string;
ssl?: boolean | string;
application_name?: string;
fallback_application_name?: string;