UNPKG

vue-wait

Version:

Vue Plugin for Global Loading Management

19 lines (15 loc) 283 B
/** * Extends interfaces in Vue.js */ import Vue from 'vue'; import VueWait from './index'; declare module 'vue/types/vue' { interface Vue { $wait: VueWait; } } declare module 'vue/types/options' { interface ComponentOptions<V extends Vue> { wait?: VueWait; } }