dialogservice.d.ts 741 B

1234567891011121314
  1. import { ComponentFactoryResolver, ApplicationRef, Injector, Type, ComponentRef } from '@angular/core';
  2. import { DynamicDialogComponent } from './dynamicdialog';
  3. import { DynamicDialogConfig } from './dynamicdialog-config';
  4. import { DynamicDialogRef } from './dynamicdialog-ref';
  5. export declare class DialogService {
  6. private componentFactoryResolver;
  7. private appRef;
  8. private injector;
  9. dialogComponentRef: ComponentRef<DynamicDialogComponent>;
  10. constructor(componentFactoryResolver: ComponentFactoryResolver, appRef: ApplicationRef, injector: Injector);
  11. open(componentType: Type<any>, config: DynamicDialogConfig): DynamicDialogRef;
  12. private appendDialogComponentToBody;
  13. private removeDialogComponentFromBody;
  14. }