feat(parser): create info parser with exporting parser internals

This commit is contained in:
Reda Al Sulais
2023-08-20 15:38:46 +03:00
parent 1559c2ca21
commit 1c24617f98
8 changed files with 211 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
export type { Info } from './language/index.js';
export type { DiagramAST } from './parse.js';
export { parse, MermaidParseError } from './parse.js';