igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
16 lines (15 loc) • 411 B
TypeScript
import { IDataLegend } from "./IDataLegend";
import { IDataLegendSeries } from "./IDataLegendSeries";
import { Type } from "./type";
/**
* @hidden
*/
export interface IDataLegendTarget {
attachDataLegend(a: IDataLegend): void;
detachDataLegend(a: IDataLegend): void;
getDataLegendSeries(): IDataLegendSeries[];
}
/**
* @hidden
*/
export declare let IDataLegendTarget_$type: Type;