UNPKG

640 BTypeScriptView Raw
1import { ViewContainerRef, ApplicationRef, ComponentFactoryResolver, EventEmitter } from '@angular/core';
2export declare class MdlDialogOutletService {
3 private appRef;
4 private componentFactoryResolver;
5 private viewContainerRef_;
6 private backdropComponent;
7 backdropClickEmitter: EventEmitter<any>;
8 constructor(appRef: ApplicationRef, componentFactoryResolver: ComponentFactoryResolver);
9 setDefaultViewContainerRef(vCRef: ViewContainerRef): void;
10 readonly viewContainerRef: ViewContainerRef;
11 private setViewContainerRef(value);
12 hideBackdrop(): void;
13 showBackdropWithZIndex(zIndex: number): void;
14}