UNPKG

@fivethree/core

Version:
17 lines (16 loc) 612 B
import { TemplateRef, EventEmitter, ViewContainerRef } from '@angular/core'; import { FivOverlayContent } from './overlay-content/overlay-content.component'; import { FivOverlayService } from './overlay.service'; export declare class FivOverlay { private viewContainer; private overlay; private componentRef; ngContent: TemplateRef<any>; priority: any; afterInit: EventEmitter<any>; private _open; constructor(viewContainer: ViewContainerRef, overlay: FivOverlayService); show(priority?: number, data?: any): FivOverlayContent; hide(): void; readonly open: boolean; }