mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
commit
4db1a7e9ab
16
index.d.ts
vendored
16
index.d.ts
vendored
@ -2,13 +2,13 @@ export function parse(connectionString: string): ConnectionOptions;
|
||||
|
||||
export interface ConnectionOptions {
|
||||
host: string | null;
|
||||
password: string | null;
|
||||
user: string | null;
|
||||
port: number | null;
|
||||
database: string | null;
|
||||
client_encoding: string | null;
|
||||
ssl: boolean | null;
|
||||
password?: string;
|
||||
user?: string;
|
||||
port?: string | null;
|
||||
database: string | null | undefined;
|
||||
client_encoding?: string;
|
||||
ssl?: boolean | string;
|
||||
|
||||
application_name: string | null;
|
||||
fallback_application_name: string | null;
|
||||
application_name?: string;
|
||||
fallback_application_name?: string;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user