You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
741 B
TypeScript
15 lines
741 B
TypeScript
import { ComponentFactoryResolver, ApplicationRef, Injector, Type, ComponentRef } from '@angular/core';
|
|
import { DynamicDialogComponent } from './dynamicdialog';
|
|
import { DynamicDialogConfig } from './dynamicdialog-config';
|
|
import { DynamicDialogRef } from './dynamicdialog-ref';
|
|
export declare class DialogService {
|
|
private componentFactoryResolver;
|
|
private appRef;
|
|
private injector;
|
|
dialogComponentRef: ComponentRef<DynamicDialogComponent>;
|
|
constructor(componentFactoryResolver: ComponentFactoryResolver, appRef: ApplicationRef, injector: Injector);
|
|
open(componentType: Type<any>, config: DynamicDialogConfig): DynamicDialogRef;
|
|
private appendDialogComponentToBody;
|
|
private removeDialogComponentFromBody;
|
|
}
|