UNPKG

@glance-networks/agent-plugin

Version:

Glance Networks Agent Plugin

21 lines (20 loc) 918 B
import type { MiddlewareData, Middleware, Placement, Strategy, Padding } from '@floating-ui/dom'; type Size = 'small' | 'medium'; declare const TOOLTIP_POSITIONS: { [key in Placement]: key; }; declare const TOOLTIP_STRATEGIES: { [key in Strategy]: string; }; declare const TOOLTIP_SIZES: { [key in Size]: key; }; declare const DEFAULT_TOOLTIP_POSITION: Placement; declare const DEFAULT_TOOLTIP_SIZE: Size; declare const DEFAULT_TOOLTIP_STRATEGY: Strategy | string; declare const DEFAULT_ARROW_PADDING: Padding; declare const DEFAULT_TOOLTIP_TIMEOUT: number; declare const DEFAULT_TOOLTIP_OFFSET: number; export { TOOLTIP_POSITIONS, TOOLTIP_STRATEGIES, TOOLTIP_SIZES }; export { DEFAULT_TOOLTIP_TIMEOUT, DEFAULT_TOOLTIP_POSITION, DEFAULT_TOOLTIP_STRATEGY, DEFAULT_ARROW_PADDING, DEFAULT_TOOLTIP_SIZE, DEFAULT_TOOLTIP_OFFSET }; export type { MiddlewareData, Placement, Strategy, Middleware, Size, Padding };