igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
25 lines (24 loc) • 901 B
TypeScript
import { NativeUIElementBridge } from "./NativeUIElementBridge";
import { DomRenderer } from "./dom";
import { Type } from "./type";
import { NativeUIComponent } from "./NativeUIComponent";
import { NativeUIBuiltInEvents } from "./NativeUIBuiltInEvents";
import { NativeUIBuiltInProperties } from "./NativeUIBuiltInProperties";
/**
* @hidden
*/
export declare class IgcDropdownBridge extends NativeUIElementBridge {
static $t: Type;
constructor(a: DomRenderer);
private d;
private c;
private f;
addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
private i;
getValue(a: any, b: NativeUIBuiltInProperties): any;
removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
private g;
private e;
private h;
setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
}