26 lines
689 B
TypeScript
26 lines
689 B
TypeScript
import { ClientConfig } from 'pg'
|
|
|
|
export function parse(connectionString: string, options: Options): ConnectionOptions
|
|
|
|
export interface Options {
|
|
// Use libpq semantics when interpreting the connection string
|
|
useLibpqCompat?: boolean
|
|
}
|
|
|
|
export interface ConnectionOptions {
|
|
host: string | null
|
|
password?: string
|
|
user?: string
|
|
port?: string | null
|
|
database: string | null | undefined
|
|
client_encoding?: string
|
|
ssl?: boolean | string
|
|
|
|
application_name?: string
|
|
fallback_application_name?: string
|
|
options?: string
|
|
}
|
|
|
|
export function toClientConfig(config: ConnectionOptions): ClientConfig
|
|
export function parseIntoClientConfig(connectionString: string): ClientConfig
|