From eb0c7e236d4e85c3dfedf4b8ad07fd9b50e50882 Mon Sep 17 00:00:00 2001 From: JF Paradis Date: Fri, 5 Aug 2022 14:17:44 -0700 Subject: [PATCH] fix(types): Make SetupBindings optional on ExtendedVue and CombinedVueInstance (fix #12726, #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