From 00458cd38d209410d3c675729230a42a0a34a4b9 Mon Sep 17 00:00:00 2001 From: jf-paradis <89814003+jf-paradis@users.noreply.github.com> Date: Mon, 8 Aug 2022 17:50:53 -0700 Subject: [PATCH] fix(types): Make SetupBindings optional on ExtendedVue and CombinedVueInstance (#12727) fix #12726 fix #12717 --- types/vue.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/vue.d.ts b/types/vue.d.ts index 74bce2c8a45..8c91bc88a2f 100644 --- a/types/vue.d.ts +++ b/types/vue.d.ts @@ -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 & Vue