| 12 | | (string | number)[]; |
| 13 | |
| 14 | export interface StorageAdapter { |
| 15 | execute<T = Record<string, unknown>>( |
| 16 | operation: string, |
| 17 | binds?: SqlBindValue[] |
| 18 | ): Promise<T[]> | T[]; |
| 19 | begin(): Promise<void> | void; |
| 20 | commit(): Promise<void> | void; |
| 21 | rollback(): Promise<void> | void; |
| 22 | getDialect(): string; |
| 23 | close(): Promise<void> | void; |
| 24 | } |
| 25 | |
| 26 | export interface Migration { |
| 27 | description: string; |
no outgoing calls
no test coverage detected