UNPKG
vue-wait
Version:
latest (1.5.3)
1.5.3
1.5.2
1.5.1
1.5.0
1.4.8
1.4.7
1.4.6
1.4.5
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.3
1.3.2
1.3.1
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
Vue Plugin for Global Loading Management
github.com/f/vue-wait
f/vue-wait
vue-wait
/
src
/
types
/
vue.d.ts
19 lines
(15 loc)
•
283 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** * 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
; } }