Files
infocom-systems-design/node_modules/@mermaid-js/mermaid-zenuml/dist/parser.d.ts
2025-10-03 22:27:28 +03:00

11 lines
319 B
TypeScript

/**
* ZenUML manage parsing internally. It uses Antlr4 to parse the DSL.
* The parser is defined in https://github.com/ZenUml/vue-sequence/blob/main/src/parser/index.js
*
* This is a dummy parser that satisfies the mermaid API logic.
*/
declare const _default: {
parse: () => void;
};
export default _default;