UNPKG

igniteui-react-core

Version:
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;