abc-charts
Version:
Widget render for using in 'ABC consulting' projects
12 lines (11 loc) • 455 B
TypeScript
import { IWidgetVariables } from ".";
/**
* NOTE: Здесь описываются только методы, которые будут доступны НАРУЖУ из библиотеки, и ничего более!
*/
export interface IChart {
destroy(): void;
getVariables(): IWidgetVariables;
getDataSourceNameIds(): string[];
getDataSourceIndex(dataSourceName: string): number | null;
redraw(): Promise<void>;
}