UNPKG

@ngx-popovers/tooltip

Version:

The Tooltip component based on Angular 17+ and Floating-ui shows tooltips next to the trigger element

14 lines (13 loc) 457 B
import { FloatingConfig, MiddlewareList, NgxFloatingConfig } from '@ngx-popovers/core'; export interface TooltipConfig extends FloatingConfig { debounce: number; arrow: boolean; arrowPadding: number; } export declare class NgxTooltipConfig extends NgxFloatingConfig implements TooltipConfig { debounce: number; arrow: boolean; arrowPadding: number; middleware: MiddlewareList; constructor(config?: Partial<TooltipConfig>); }