| 6 | import type { Values } from "../data-types.ts"; |
| 7 | |
| 8 | interface PostgresOptionsWithConfig extends ConnectorOptions { |
| 9 | database: string; |
| 10 | host: string; |
| 11 | username: string; |
| 12 | password: string; |
| 13 | port?: number; |
| 14 | } |
| 15 | |
| 16 | interface PostgresOptionsWithURI extends ConnectorOptions { |
| 17 | uri: string; |
nothing calls this directly
no outgoing calls
no test coverage detected