mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-15 06:19:24 +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;
|