igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
17 lines (16 loc) • 746 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 SpanBridge extends NativeUIElementBridge {
static $t: Type;
addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
getValue(a: any, b: NativeUIBuiltInProperties): any;
removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
exportVisualData(a: any): any;
}