| 87 | } |
| 88 | |
| 89 | interface CRDatabase { |
| 90 | close: () => void |
| 91 | execO: <T extends Record<string, unknown>>( |
| 92 | sql: string, |
| 93 | bind?: readonly unknown[], |
| 94 | ) => Promise<T[]> |
| 95 | } |
| 96 | |
| 97 | export { CRDialect, type CRDatabase } |
nothing calls this directly
no outgoing calls
no test coverage detected