6 lines
340 B
TypeScript
6 lines
340 B
TypeScript
import type { Group } 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: Group): DrawableElem[];
|
|
}
|