interface PostgresClientOptions {
    connectionString?: string;
    database?: string;
    host?: string;
    idleTimeoutMillis?: number;
    max?: number;
    password?: string;
    port?: number;
    ssl?: boolean | Record<string, unknown>;
    user?: string;
}

Hierarchy (view full)

Properties

connectionString?: string
database?: string
host?: string
idleTimeoutMillis?: number
max?: number
password?: string
port?: number
ssl?: boolean | Record<string, unknown>
user?: string