mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 23:15:46 -06:00
12 lines
546 B
TypeScript
12 lines
546 B
TypeScript
import type { DrawableElem, XYChartConfig, XYChartData, XYChartThemeConfig } from './interfaces.js';
|
|
import type { Group } from '../../../diagram-api/types.js';
|
|
export declare class Orchestrator {
|
|
private chartConfig;
|
|
private chartData;
|
|
private componentStore;
|
|
constructor(chartConfig: XYChartConfig, chartData: XYChartData, chartThemeConfig: XYChartThemeConfig, tmpSVGGroup: Group);
|
|
private calculateVerticalSpace;
|
|
private calculateHorizontalSpace;
|
|
private calculateSpace;
|
|
getDrawableElement(): DrawableElem[];
|
|
}
|