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