UNPKG

589 BTypeScriptView Raw
1import { App } from '../app/app';
2import { Config } from '../../config/config';
3import { PopoverOptions } from './popover-options';
4import { DeepLinker } from '../../navigation/deep-linker';
5import { Overlay } from '../../navigation/overlay';
6import { OverlayProxy } from '../../navigation/overlay-proxy';
7/**
8 * @hidden
9 */
10export declare class Popover extends OverlayProxy {
11 private data;
12 private opts;
13 isOverlay: boolean;
14 constructor(app: App, component: any, data: any, opts: PopoverOptions, config: Config, deepLinker: DeepLinker);
15 getImplementation(): Overlay;
16}