| 1 | import { ApiError } from './errors'; |
| 2 | |
| 3 | export interface QueryResult { |
| 4 | columns: string[]; |
| 5 | rows: any[][]; |
| 6 | rowCount: number; |
| 7 | } |
| 8 | |
| 9 | interface McpResponse { |
| 10 | jsonrpc: string; |
nothing calls this directly
no outgoing calls
no test coverage detected