15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
export declare const DEFAULT_FONT_SIZE = 20;
|
|
export declare const SVG_TO_SHAPE_MAPPER: {
|
|
[key: string]: "rectangle" | "ellipse";
|
|
};
|
|
export declare const MERMAID_CONFIG: {
|
|
startOnLoad: boolean;
|
|
flowchart: {
|
|
curve: string;
|
|
};
|
|
themeVariables: {
|
|
fontSize: string;
|
|
};
|
|
maxEdges: number;
|
|
maxTextSize: number;
|
|
};
|