mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-09 10:36:43 +02:00
8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
interface ConfigType {
|
|
class?: { defaultRenderer: string };
|
|
state?: { defaultRenderer: string };
|
|
flowchart?: { defaultRenderer: string };
|
|
}
|
|
|
|
type DiagramDetector = (text: string) => boolean;
|