igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
21 lines (20 loc) • 732 B
TypeScript
import { Base, Type } from "./type";
import { INativeUIWindowBridge } from "./INativeUIWindowBridge";
import { NativeUIBuiltInEvents } from "./NativeUIBuiltInEvents";
/**
* @hidden
*/
export declare class DOMWindowBridge extends Base implements INativeUIWindowBridge {
static $t: Type;
private b;
private a;
addEventListener(a: NativeUIBuiltInEvents, b: (arg1: any) => void): void;
addEventListener1(a: NativeUIBuiltInEvents, b: (arg1: any) => void, c: any): void;
getHeight(): number;
getHeight1(a: any): number;
getWidth(): number;
getWidth1(a: any): number;
removeEventListener(a: NativeUIBuiltInEvents, b: (arg1: any) => void): void;
private d;
private c;
}