| 138 | // ==================== Converted Result ==================== |
| 139 | |
| 140 | export interface ConvertResult { |
| 141 | // Converted content (string for text formats, Blob for binary) |
| 142 | content: string | Blob |
| 143 | // Preview-specific representation (e.g., HTML for markdown preview) |
| 144 | preview?: string |
| 145 | // Whether content is binary |
| 146 | isBinary: boolean |
| 147 | // File extension (without dot) |
| 148 | extension: string |
| 149 | // MIME type |
| 150 | mimeType: string |
| 151 | } |
| 152 | |
| 153 | // ==================== Plugin Interfaces ==================== |
| 154 |
nothing calls this directly
no outgoing calls
no test coverage detected