(params: { uri: string }, options?: { timeout?: number })
| 252 | } |
| 253 | |
| 254 | async readResource(params: { uri: string }, options?: { timeout?: number }) { |
| 255 | if (this._state) this._state.readResourceTimeout = options?.timeout |
| 256 | return { contents: [{ uri: params.uri, text: "test" }] } |
| 257 | } |
| 258 | |
| 259 | async close() { |
| 260 | if (this._state) this._state.closed = true |
no outgoing calls
no test coverage detected