| 20 | export type { RenderMode }; |
| 21 | |
| 22 | export interface MarkdownProps extends MarkdownBaseProps { |
| 23 | /** |
| 24 | * Attachments associated with the surrounding entity (chat message, skill |
| 25 | * file). When passed, the renderer resolves inline image / file-card URLs |
| 26 | * to full attachment records via AttachmentDownloadProvider, unlocking the |
| 27 | * unified hover toolbar / lightbox / preview-modal behavior used in |
| 28 | * editor surfaces. |
| 29 | */ |
| 30 | attachments?: AttachmentRecord[]; |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Default renderMention that delegates to entity chips for issue/project mentions |
nothing calls this directly
no outgoing calls
no test coverage detected