fix(types): Make SetupBindings optional on ExtendedVue and CombinedVueInstance (#12727)

fix #12726
fix #12717
This commit is contained in:
jf-paradis 2022-08-08 17:50:53 -07:00 committed by GitHub
parent 1d8b892fcd
commit 00458cd38d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
types/vue.d.ts vendored
View File

@ -100,7 +100,7 @@ export type CombinedVueInstance<
Methods,
Computed,
Props,
SetupBindings
SetupBindings = {}
> = Data &
Methods &
Computed &
@ -114,7 +114,7 @@ export type ExtendedVue<
Methods,
Computed,
Props,
SetupBindings
SetupBindings = {}
> = VueConstructor<
CombinedVueInstance<Instance, Data, Methods, Computed, Props, SetupBindings> &
Vue