remove unused `HTML` import in pieRenderer

This commit is contained in:
Reda Al Sulais 2023-08-08 19:00:27 +03:00
parent 5485517b27
commit ca1cdb1d94
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import { log } from '../../logger.js';
import { configureSvgSize } from '../../setupGraphViewbox.js';
import { getConfig } from '../../config.js';
import { parseFontSize } from '../../utils.js';
import type { DrawDefinition, Group, HTML, SVG } from '../../diagram-api/types.js';
import type { DrawDefinition, Group, SVG } from '../../diagram-api/types.js';
import type { D3Sections, PieDB, PieDiagramConfig, Sections } from './pieTypes.js';
import type { MermaidConfig } from '../../config.type.js';
import { selectSvgElement } from '../../rendering-util/selectSvgElement.js';