| 123456789101112131415 |
- import { ViewContainerRef, ComponentFactoryResolver } from "@angular/core";
- import { TooltipContent } from "./TooltipContent";
- export declare class Tooltip {
- private viewContainerRef;
- private resolver;
- private tooltip;
- private visible;
- constructor(viewContainerRef: ViewContainerRef, resolver: ComponentFactoryResolver);
- content: string | TooltipContent;
- tooltipDisabled: boolean;
- tooltipAnimation: boolean;
- tooltipPlacement: "top" | "bottom" | "left" | "right";
- show(): void;
- hide(): void;
- }
|