From b0ccb8618382b6ee143d68cf4498d6b3ec18aa81 Mon Sep 17 00:00:00 2001 From: James George Date: Sat, 1 Dec 2018 10:53:58 +0530 Subject: [PATCH] chore: rephrase comment (#9100) --- 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 39967963e8d..349c3432908 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>;