| 25 | } |
| 26 | |
| 27 | export interface SQLResult { |
| 28 | rows: any[]; |
| 29 | rowCount: number; |
| 30 | /** Informational messages from the database (e.g. SQL Server STATISTICS TIME/IO, PRINT output) */ |
| 31 | messages?: DatabaseMessage[]; |
| 32 | } |
| 33 | |
| 34 | export interface TableColumn { |
| 35 | column_name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected