Skip to content

Commit

Permalink
fix(types): Add missing type parameter constraints (#12754)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandersn committed Aug 22, 2022
1 parent 1561888 commit 810f6d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions types/options.d.ts
Expand Up @@ -95,8 +95,8 @@ export type ThisTypedComponentOptionsWithArrayProps<
Computed,
PropNames extends string,
SetupBindings,
Mixin,
Extends
Mixin extends ComponentOptionsMixin,
Extends extends ComponentOptionsMixin
> = object &
ComponentOptions<
V,
Expand Down Expand Up @@ -132,8 +132,8 @@ export type ThisTypedComponentOptionsWithRecordProps<
Computed,
Props,
SetupBindings,
Mixin,
Extends
Mixin extends ComponentOptionsMixin,
Extends extends ComponentOptionsMixin
> = object &
ComponentOptions<
V,
Expand Down

0 comments on commit 810f6d1

Please sign in to comment.