UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

14 lines (13 loc) 266 B
import { Type } from "./type"; /** * @hidden */ export interface IDataObject { getData(a: string): any; getDataPresent(a: string): boolean; setData(a: string, b: any): void; } /** * @hidden */ export declare let IDataObject_$type: Type;