UNPKG

@lucasferreiralsf/angular-frontend-library

Version:

This is a set of custom angular components to easy the development of any Subway frontend project.

22 lines (21 loc) 773 B
import { ViewContainerRef, AfterViewInit } from '@angular/core'; import { Overlay } from '@angular/cdk/overlay'; import { PopoverService } from './popover.service'; export declare class PopoverComponent implements AfterViewInit { private overlay; viewContainerRef: ViewContainerRef; private popoverService; private strategy; private config; private overlayRef; popoverTitle: string; popoverDescription: string; elementId: string; private popoverOrigin; private popoverContentTemplate; private positions; constructor(overlay: Overlay, viewContainerRef: ViewContainerRef, popoverService: PopoverService); ngAfterViewInit(): void; openPopover(): void; clickActionButton(event: any): void; }