UNPKG

@hxui/angular

Version:

This README includes the steps that are necessary to import the HxUi-angular into a project or to contribute with development.

12 lines (11 loc) 679 B
import { NgZone, ViewContainerRef, ComponentFactoryResolver, Injector, Renderer2, ElementRef } from '@angular/core'; import { ComponentLoader } from './component-loader.class'; import { PositioningService } from '../positioning/positioning.service'; export declare class ComponentLoaderFactory { private _componentFactoryResolver; private _ngZone; private _injector; private _posService; constructor(componentFactoryResolver: ComponentFactoryResolver, ngZone: NgZone, injector: Injector, posService: PositioningService); createLoader<T>(_elementRef: ElementRef, _viewContainerRef: ViewContainerRef, _renderer: Renderer2): ComponentLoader<T>; }