We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d7b96e6 + 726f620 commit 4db1a7eCopy full SHA for 4db1a7e
index.d.ts
@@ -2,13 +2,13 @@ export function parse(connectionString: string): ConnectionOptions;
2
3
export interface ConnectionOptions {
4
host: string | null;
5
- password: string | null;
6
- user: string | null;
7
- port: number | null;
8
- database: string | null;
9
- client_encoding: string | null;
10
- ssl: boolean | null;
+ password?: string;
+ user?: string;
+ port?: string | null;
+ database: string | null | undefined;
+ client_encoding?: string;
+ ssl?: boolean | string;
11
12
- application_name: string | null;
13
- fallback_application_name: string | null;
+ application_name?: string;
+ fallback_application_name?: string;
14
}
0 commit comments