MCPcopy Index your code
hub / github.com/codeaashu/claude-code / isTextBlock

Function isTextBlock

src/utils/mcpValidation.ts:51–53  ·  view source on GitHub ↗
(block: ContentBlockParam)

Source from the content-addressed store, hash-verified

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

Callers 2

getContentSizeEstimateFunction · 0.70
truncateContentBlocksFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected