UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

15 lines (14 loc) 516 B
import { NativeUIComponentBuiltInType } from "./NativeUIComponentBuiltInType"; import { Type } from "./type"; /** * @hidden */ export interface INativeUIElementFactory { supportsComponent(a: NativeUIComponentBuiltInType): boolean; createComponent(a: any, b: NativeUIComponentBuiltInType, c: (arg1: any) => void): void; createComponentSync(a: any, b: NativeUIComponentBuiltInType, c: (arg1: any) => void): void; } /** * @hidden */ export declare let INativeUIElementFactory_$type: Type;