UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

19 lines (18 loc) 638 B
import { EventArgs, Type } from "igniteui-angular-core"; import { ObjectCollection } from "igniteui-angular-core"; /** * @hidden */ export declare class SelectedItemsChangedEventArgs extends EventArgs { static $t: Type; private _oldItems; get oldItems(): ObjectCollection; set oldItems(a: ObjectCollection); private _newItems; get newItems(): ObjectCollection; set newItems(a: ObjectCollection); private _currentItems; get currentItems(): ObjectCollection; set currentItems(a: ObjectCollection); constructor(a: ObjectCollection, b: ObjectCollection, c: ObjectCollection); }