mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 23:15:46 -06:00
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[];
|
||
|
}
|