mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
15 lines
368 B
TypeScript
15 lines
368 B
TypeScript
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;
|
|
|
|
application_name: string | null;
|
|
fallback_application_name: string | null;
|
|
}
|