UNPKG

bootstrap-vue-next

Version:

BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.

15 lines (14 loc) 556 B
import { MaybeRefOrGetter, Ref } from 'vue'; export declare const useCountdownHover: (element: Ref<HTMLElement | null>, { modelValueIgnoresHover, noHoverPause, noResumeOnHoverLeave, }: { noHoverPause?: MaybeRefOrGetter<boolean>; noResumeOnHoverLeave?: MaybeRefOrGetter<boolean>; /** * Countdown/hover rules don't apply to static model-values (boolean) */ modelValueIgnoresHover?: MaybeRefOrGetter<boolean>; }, actions: { pause: () => void; resume: () => void; }) => { isHovering: import('vue').ShallowRef<boolean>; };