| 12 | export type DriverKey = typeof supportedDrivers[number]; |
| 13 | |
| 14 | export interface Pool { |
| 15 | getConnection: () => Promise<Conn>; |
| 16 | end: () => void; |
| 17 | } |
| 18 | |
| 19 | // ExecutionResult can represent the output of multiple queries, |
| 20 | // any of which can be `exec`, schema changes, `select`, etc. |
nothing calls this directly
no outgoing calls
no test coverage detected