Skip to content

Commit

Permalink
fix(types): Make SetupBindings optional on ExtendedVue and CombinedVu…
Browse files Browse the repository at this point in the history
…eInstance (#12727)

fix #12726
fix #12717
  • Loading branch information
jfparadis-appomni committed Aug 9, 2022
1 parent 1d8b892 commit 00458cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/vue.d.ts
Expand Up @@ -100,7 +100,7 @@ export type CombinedVueInstance<
Methods,
Computed,
Props,
SetupBindings
SetupBindings = {}
> = Data &
Methods &
Computed &
Expand All @@ -114,7 +114,7 @@ export type ExtendedVue<
Methods,
Computed,
Props,
SetupBindings
SetupBindings = {}
> = VueConstructor<
CombinedVueInstance<Instance, Data, Methods, Computed, Props, SetupBindings> &
Vue
Expand Down

0 comments on commit 00458cd

Please sign in to comment.