Files
2025-11-23 14:59:17 -08:00

6 lines
346 B
TypeScript

import type { SVGGroup } from '../../../diagram-api/types.js';
import type { DrawableElem, XYChartConfig, XYChartData, XYChartThemeConfig } from './interfaces.js';
export declare class XYChartBuilder {
static build(config: XYChartConfig, chartData: XYChartData, chartThemeConfig: XYChartThemeConfig, tmpSVGGroup: SVGGroup): DrawableElem[];
}