UNPKG

bootstrap-vue-next

Version:

Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development

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