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