Function
getMessageImages
(content: CustomMessage["content"] | UserMessage["content"])
Source from the content-addressed store, hash-verified
| 1304 | } |
| 1305 | |
| 1306 | function getMessageImages(content: CustomMessage["content"] | UserMessage["content"]): ImageContent[] { |
| 1307 | if (typeof content === "string") return []; |
| 1308 | return content.filter((b): b is ImageContent => b.type === "image"); |
| 1309 | } |
| 1310 | |
| 1311 | function imageSource(img: ImageContent): string { |
| 1312 | const flat = img as unknown as { data?: string; mimeType?: string }; |
Tested by
no test coverage detected