| 9 | const require = createRequire(import.meta.url); |
| 10 | |
| 11 | interface SqliteRow { |
| 12 | [key: string]: unknown; |
| 13 | } |
| 14 | |
| 15 | interface NodeSqliteModule { |
| 16 | DatabaseSync: new (path: string, options?: { readOnly?: boolean }) => { |
nothing calls this directly
no outgoing calls
no test coverage detected