igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
14 lines (13 loc) • 369 B
TypeScript
import { DataLegendSummaryResult } from "./DataLegendSummaryResult";
import { Type } from "igniteui-react-core";
/**
* @hidden
*/
export interface IDataLegendSummaryCalculation {
calculate(a: number[], b: string): DataLegendSummaryResult;
readonly title: string;
}
/**
* @hidden
*/
export declare let IDataLegendSummaryCalculation_$type: Type;