Updated parser to use treemap

This commit is contained in:
shubham-mermaid
2025-07-07 18:50:53 +05:30
parent 85eba01663
commit 0da2922ee7
3 changed files with 9 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ export {
Architecture,
GitGraph,
Radar,
TreemapDoc,
Treemap,
Branch,
Commit,
Merge,
@@ -20,7 +20,7 @@ export {
isPieSection,
isArchitecture,
isGitGraph,
isTreemapDoc,
isTreemap,
isBranch,
isCommit,
isMerge,

View File

@@ -34,14 +34,14 @@ interface ClassDefStatement {
className: string
styleText: string // Optional style text
}
interface TreemapDoc {
interface Treemap {
TreemapRows: TreemapRow[]
title?: string
accTitle?: string
accDescr?: string
}
entry TreemapDoc returns TreemapDoc:
entry Treemap returns Treemap:
TREEMAP_KEYWORD
(
TitleAndAccessibilities