| 8 | export type DatabaseRow = Record<string, unknown>; |
| 9 | |
| 10 | export interface DatabaseService { |
| 11 | execute(sql: string, params?: unknown[]): Promise<DatabaseExecResult>; |
| 12 | select<T extends DatabaseRow = DatabaseRow>(sql: string, params?: unknown[]): Promise<T[]>; |
| 13 | batch(statements: string[]): Promise<void>; |
| 14 | close(): Promise<void>; |
| 15 | } |
no outgoing calls
no test coverage detected