UNPKG

bootstrap-vue-next

Version:

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

7 lines (6 loc) 277 B
import { Directive } from 'vue'; import { useScrollspy } from '../../composables/useScrollspy'; export interface ElementWithScrollspy extends HTMLElement { $__scrollspy?: ReturnType<typeof useScrollspy>; } export declare const vBScrollspy: Directive<ElementWithScrollspy>;