UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

20 lines (19 loc) 924 B
import { NativeUIElementBridge } from "./NativeUIElementBridge"; import { INativeUIContentBridge } from "./INativeUIContentBridge"; import { Type } from "./type"; import { NativeUIComponent } from "./NativeUIComponent"; import { NativeUIBuiltInEvents } from "./NativeUIBuiltInEvents"; import { NativeUIBuiltInProperties } from "./NativeUIBuiltInProperties"; /** * @hidden */ export declare class DivBridge extends NativeUIElementBridge implements INativeUIContentBridge { static $t: Type; addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void; getContent(a: any): NativeUIComponent; getValue(a: any, b: NativeUIBuiltInProperties): any; removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void; private c; setContent(a: any, b: NativeUIComponent): void; setValue(a: any, b: NativeUIBuiltInProperties, c: any): void; }