bootstrap-vue-next
Version:
BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.
11 lines (10 loc) • 322 B
text/typescript
import { MaybeRefOrGetter, Ref } from 'vue';
export declare const useCountdownHover: (element: Ref<HTMLElement | null>, props: MaybeRefOrGetter<{
noHoverPause?: boolean;
noResumeOnHoverLeave?: boolean;
}>, actions: {
pause: () => void;
resume: () => void;
}) => {
isHovering: Ref<boolean, boolean>;
};