Tooltip.d.ts 537 B

123456789101112131415
  1. import { ViewContainerRef, ComponentFactoryResolver } from "@angular/core";
  2. import { TooltipContent } from "./TooltipContent";
  3. export declare class Tooltip {
  4. private viewContainerRef;
  5. private resolver;
  6. private tooltip;
  7. private visible;
  8. constructor(viewContainerRef: ViewContainerRef, resolver: ComponentFactoryResolver);
  9. content: string | TooltipContent;
  10. tooltipDisabled: boolean;
  11. tooltipAnimation: boolean;
  12. tooltipPlacement: "top" | "bottom" | "left" | "right";
  13. show(): void;
  14. hide(): void;
  15. }