| 66 | } |
| 67 | |
| 68 | interface DataItem { |
| 69 | id: string; |
| 70 | name: string; |
| 71 | } |
| 72 | |
| 73 | function datasetsOf(result: CallToolResult): Dataset[] { |
| 74 | const s = result.structuredContent as { datasets?: Dataset[] } | undefined; |
nothing calls this directly
no outgoing calls
no test coverage detected