UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

19 lines (18 loc) 607 B
import { NativeUIBuiltInEvents } from "./NativeUIBuiltInEvents"; import { Type } from "./type"; /** * @hidden */ export interface INativeUIWindowBridge { addEventListener(a: NativeUIBuiltInEvents, b: (arg1: any) => void): void; addEventListener1(a: NativeUIBuiltInEvents, b: (arg1: any) => void, c: any): void; removeEventListener(a: NativeUIBuiltInEvents, b: (arg1: any) => void): void; getWidth(): number; getWidth1(a: any): number; getHeight(): number; getHeight1(a: any): number; } /** * @hidden */ export declare let INativeUIWindowBridge_$type: Type;