UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

15 lines (14 loc) 378 B
import { Type } from "./type"; /** * @hidden */ export interface ISupportsDataChangeNotifications { notifySetItem(a: number, b: any, c: any): void; notifyClearItems(): void; notifyInsertItem(a: number, b: any): void; notifyRemoveItem(a: number, b: any): void; } /** * @hidden */ export declare let ISupportsDataChangeNotifications_$type: Type;