| 20 | } from './message-sql' |
| 21 | |
| 22 | export interface AsyncSqlExecutor { |
| 23 | all<T>(sql: string, params?: unknown[]): Promise<T[]> |
| 24 | get<T>(sql: string, params?: unknown[]): Promise<T | undefined> |
| 25 | } |
| 26 | |
| 27 | // ==================== Result types ==================== |
| 28 |
no outgoing calls
no test coverage detected