| 13 | // --------------------------------------------------------------------------- |
| 14 | |
| 15 | interface JsonRpcRequest { |
| 16 | jsonrpc: "2.0"; |
| 17 | id: number; |
| 18 | method: string; |
| 19 | params?: Record<string, unknown>; |
| 20 | } |
| 21 | |
| 22 | interface JsonRpcResponse { |
| 23 | jsonrpc: "2.0"; |
nothing calls this directly
no outgoing calls
no test coverage detected