UNPKG

flexacore-ui-dev

Version:

Universal UI Framework for CDN, React, Angular, Vue, Svelte with TypeScript support

17 lines (16 loc) 439 B
import { EventEmitter, ElementRef } from '@angular/core'; export declare class FCTooltipComponent { private elementRef; content: string; placement: 'top' | 'bottom' | 'left' | 'right'; show: boolean; showChange: EventEmitter<boolean>; position: { x: number; y: number; }; constructor(elementRef: ElementRef); onMouseEnter(): void; onMouseLeave(): void; private updatePosition; }