| 73 | * Mermaid instance interface |
| 74 | */ |
| 75 | export interface MermaidInstance { |
| 76 | initialize: (config: MermaidConfig) => void; |
| 77 | render: (id: string, source: string) => Promise<{ svg: string }>; |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Plugin for diagram rendering (Mermaid) |
nothing calls this directly
no outgoing calls
no test coverage detected