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