truly-ui
Version:
Web Components for Desktop Applications.
13 lines (12 loc) • 415 B
TypeScript
import { ComponentFactoryResolver, ViewContainerRef } from '@angular/core';
import { TooltipOptions } from '../../tooltip/tooltipOptions';
export declare class TooltipDirective {
private view;
private compiler;
tooltip: TooltipOptions;
constructor(view: ViewContainerRef, compiler: ComponentFactoryResolver);
onMouseEnter(): void;
onMouseLeave(): void;
show(): void;
hide(): void;
}