| 3 | export function parse(connectionString: string, options?: Options): ConnectionOptions |
| 4 | |
| 5 | export interface Options { |
| 6 | // Use libpq semantics when interpreting the connection string |
| 7 | useLibpqCompat?: boolean |
| 8 | } |
| 9 | |
| 10 | interface SSLConfig { |
| 11 | ca?: string |
nothing calls this directly
no outgoing calls
no test coverage detected