(block: ContentBlockParam)
| 49 | export type MCPToolResult = string | ContentBlockParam[] | undefined |
| 50 | |
| 51 | function isTextBlock(block: ContentBlockParam): block is TextBlockParam { |
| 52 | return block.type === 'text' |
| 53 | } |
| 54 | |
| 55 | function isImageBlock(block: ContentBlockParam): block is ImageBlockParam { |
| 56 | return block.type === 'image' |
no outgoing calls
no test coverage detected