mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-02-04 07:13:25 +08:00
17 lines
374 B
TypeScript
17 lines
374 B
TypeScript
// @ts-ignore: TODO Fix ts errors
|
|
import parser from './parser/exampleDiagram';
|
|
import * as db from './exampleDiagramDb';
|
|
import renderer from './exampleDiagramRenderer';
|
|
import styles from './styles';
|
|
import { injectUtils } from './mermaidUtils';
|
|
|
|
export const diagram = {
|
|
db,
|
|
renderer,
|
|
parser,
|
|
styles,
|
|
injectUtils,
|
|
};
|
|
|
|
export { detector, id } from './detector';
|