diff --git a/types/vue.d.ts b/types/vue.d.ts index 39967963e8..349c343290 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>;