mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-24 07:25:40 -06:00
12 lines
418 B
TypeScript
12 lines
418 B
TypeScript
/**
|
|
* Draws an info picture in the tag with id: id based on the graph definition in text.
|
|
*
|
|
* @param _text - Mermaid graph definition.
|
|
* @param id - The text for the error
|
|
* @param version - The version
|
|
*/
|
|
export declare const draw: (_text: string, id: string, version: string) => void;
|
|
export declare const renderer: {
|
|
draw: (_text: string, id: string, version: string) => void;
|
|
};
|
|
export default renderer;
|