| 197 | } |
| 198 | |
| 199 | export interface EditorProps { |
| 200 | content: string | Blob |
| 201 | format: FormatType |
| 202 | options: PreviewOptions |
| 203 | onChange: (newContent: string | Blob) => void |
| 204 | } |
| 205 | |
| 206 | export interface EditorPlugin { |
| 207 | id: string |
nothing calls this directly
no outgoing calls
no test coverage detected