ng-clock-picker-lib-voova
Version:
This is a customize version from the original https://jedrzejiwanicki.github.io/ng-clockpicker, Original function will not work the same
9 lines (8 loc) • 507 B
TypeScript
import { ComponentFactoryResolver, ViewContainerRef, Type } from '@angular/core';
import { DialogComponent } from '../classes/abstract-dialog';
import { ClockPickerConfig } from '../interfaces';
export declare class DynamicComponentsService {
private componentFactoryResolver;
constructor(componentFactoryResolver: ComponentFactoryResolver);
loadDynamicComponent<T extends DialogComponent>(component: Type<T>, vcr: ViewContainerRef, subscriber: any, config?: ClockPickerConfig): void;
}