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.
1 parent eafb7ac commit 929fcb7Copy full SHA for 929fcb7
index.d.ts
@@ -1,14 +1,14 @@
1
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;
+ host: string;
+ password?: string;
+ user?: string;
+ port: string | null;
+ database: string | null | undefined;
+ client_encoding?: string | undefined;
+ ssl?: boolean;
11
12
- application_name: string | null;
13
- fallback_application_name: string | null;
+ application_name?: string;
+ fallback_application_name?: string;
14
}
0 commit comments