UNPKG

custom-bootstrap-vue

Version:

Custom version of bootstrap-vue created for providing specific theme to a particular project

14 lines (12 loc) 273 B
/** * Augment the typings of Vue.js */ import Vue from 'vue' import { BvModal } from './components/modal' import { BvToast } from './components/toast' declare module 'vue/types/vue' { interface Vue { readonly $bvModal: BvModal readonly $bvToast: BvToast } }