@nethesis/vue-components
Version:
This library contains: - a collection of Vue 3 components based on [Flowbite](https://flowbite.com/) - a set of utility functions
48 lines • 1.77 kB
TypeScript
import type { PropType } from 'vue';
export type TooltipPlacement = 'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end' | 'auto' | 'auto-start' | 'auto-end';
export type TooltipTriggerEvent = 'click' | 'mouseenter focus' | 'focusin' | 'mouseenter click' | 'manual';
declare var __VLS_6: {}, __VLS_12: {};
type __VLS_Slots = {} & {
trigger?: (props: typeof __VLS_6) => any;
} & {
content?: (props: typeof __VLS_12) => any;
};
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
placement: {
type: PropType<TooltipPlacement>;
default: string;
};
triggerEvent: {
type: PropType<TooltipTriggerEvent>;
default: string;
};
interactive: {
type: BooleanConstructor;
default: boolean;
};
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
placement: {
type: PropType<TooltipPlacement>;
default: string;
};
triggerEvent: {
type: PropType<TooltipTriggerEvent>;
default: string;
};
interactive: {
type: BooleanConstructor;
default: boolean;
};
}>> & Readonly<{}>, {
placement: TooltipPlacement;
triggerEvent: TooltipTriggerEvent;
interactive: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};
//# sourceMappingURL=NeTooltip.vue.d.ts.map