UNPKG

596 BTypeScriptView Raw
1/**
2 * Merges the value of `conf` with the passed `cnf`
3 *
4 * @param cnf - Config to merge
5 */
6export declare const setConf: () => void;
7/**
8 * Draws a an info picture in the tag with id: id based on the graph definition in text.
9 *
10 * @param _text - Mermaid graph definition.
11 * @param id - The text for the error
12 * @param mermaidVersion - The version
13 */
14export declare const draw: (_text: string, id: string, mermaidVersion: string) => void;
15declare const _default: {
16 setConf: () => void;
17 draw: (_text: string, id: string, mermaidVersion: string) => void;
18};
19export default _default;