From c4bdf942b9bd2ab960edf9265cbe218230911c98 Mon Sep 17 00:00:00 2001 From: Anders Hejlsberg Date: Mon, 6 Apr 2020 13:20:43 -0700 Subject: [PATCH] Fix error caught by stricter checking in TS #37537 (#43652) --- types/vuelidate/vue.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/vuelidate/vue.d.ts b/types/vuelidate/vue.d.ts index cfeaabbdee..f7dfd6afd1 100644 --- a/types/vuelidate/vue.d.ts +++ b/types/vuelidate/vue.d.ts @@ -18,7 +18,7 @@ declare module 'vue/types/vue' { } interface Vue { - $v: ValidationProperties & ValidationGroups & Validation + $v: ValidationProperties & ValidationGroups & Validation delayTouch(v: Validation): void }