Skip to content

Commit 00458cd

Browse files
fix(types): Make SetupBindings optional on ExtendedVue and CombinedVueInstance (#12727)
fix #12726 fix #12717
1 parent 1d8b892 commit 00458cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

types/vue.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export type CombinedVueInstance<
100100
Methods,
101101
Computed,
102102
Props,
103-
SetupBindings
103+
SetupBindings = {}
104104
> = Data &
105105
Methods &
106106
Computed &
@@ -114,7 +114,7 @@ export type ExtendedVue<
114114
Methods,
115115
Computed,
116116
Props,
117-
SetupBindings
117+
SetupBindings = {}
118118
> = VueConstructor<
119119
CombinedVueInstance<Instance, Data, Methods, Computed, Props, SetupBindings> &
120120
Vue

0 commit comments

Comments
 (0)