From 79a5206d9bfc1c0f2a12b5551aca891b635bdde4 Mon Sep 17 00:00:00 2001 From: James George Date: Wed, 21 Nov 2018 21:00:19 +0530 Subject: [PATCH] rephrase comment :+1: --- types/vue.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/vue.d.ts b/types/vue.d.ts index 179fb5fe38e..1dfe59b22ac 100644 --- a/types/vue.d.ts +++ b/types/vue.d.ts @@ -79,7 +79,7 @@ export interface VueConfiguration { export interface VueConstructor { new (options?: ThisTypedComponentOptionsWithArrayProps): CombinedVueInstance>; - // ideally, the return type should just contains Props, not Record. But TS requires Base constructors must all have the same return type. + // ideally, the return type should just contain Props, not Record. But TS requires to have Base constructors with the same return type. new (options?: ThisTypedComponentOptionsWithRecordProps): CombinedVueInstance>; new (options?: ComponentOptions): CombinedVueInstance>;