flowbite-2.4.0
Version:
The most popular library of interactive components built with Tailwind CSS
15 lines • 564 B
TypeScript
import { TooltipInterface } from './interface';
import type { Placement } from '@popperjs/core';
export declare type TooltipTriggerType = 'click' | 'hover' | 'none';
export declare type TooltipTriggerEventTypes = {
showEvents: string[];
hideEvents: string[];
};
export declare type TooltipOptions = {
placement?: Placement;
triggerType?: TooltipTriggerType;
onShow?: (tooltip: TooltipInterface) => void;
onHide?: (tooltip: TooltipInterface) => void;
onToggle?: (tooltip: TooltipInterface) => void;
};
//# sourceMappingURL=types.d.ts.map