mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-11 11:29:42 +02:00
12 lines
297 B
TypeScript
12 lines
297 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.
|
|
*/
|
|
export default {
|
|
parse: () => {
|
|
// no op
|
|
},
|
|
};
|