mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-10-21 06:59:36 +02:00
#3358 Some fixes
This commit is contained in:
@@ -129,7 +129,11 @@ function getNodeFromBlock(block: Block, db: BlockDB, positioned = false) {
|
|||||||
};
|
};
|
||||||
return node;
|
return node;
|
||||||
}
|
}
|
||||||
type IOperation = (elem: any, block: any, db: any) => Promise<void>;
|
type IOperation = (
|
||||||
|
elem: d3.Selection<SVGGElement, unknown, HTMLElement, any>,
|
||||||
|
block: Block,
|
||||||
|
db: BlockDB
|
||||||
|
) => Promise<void>;
|
||||||
async function calculateBlockSize(
|
async function calculateBlockSize(
|
||||||
elem: d3.Selection<SVGGElement, unknown, HTMLElement, any>,
|
elem: d3.Selection<SVGGElement, unknown, HTMLElement, any>,
|
||||||
block: any,
|
block: any,
|
||||||
|
Reference in New Issue
Block a user