refactor: Simplify TokenBuilder and ValueConverter

This commit is contained in:
Sidharth Vinod
2023-09-14 17:32:44 +05:30
parent 52b33f6f47
commit 271b779995
10 changed files with 118 additions and 93 deletions

View File

@@ -0,0 +1,7 @@
import { MermaidTokenBuilder } from '../common/index.js';
export class InfoTokenBuilder extends MermaidTokenBuilder {
public constructor() {
super(['info', 'showInfo']);
}
}