13 lines
319 B
TypeScript
Raw Normal View History

2023-05-16 20:29:56 +10:00
/**
* 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.
*/
2023-04-23 00:34:59 +05:30
export default {
parser: { yy: {} },
parse: () => {
// no op
},
};