-
Notifications
You must be signed in to change notification settings - Fork 160
Closed
Labels
Type: BugSomething isn't workingSomething isn't working
Description
Versions
- 1.0
Describe the bug
Generic type 'CombinedVueInstance' requires 6 type argument(s).
Expected behavior
No type error
Steps to reproduce
Steps:
- Use in a project that has Vue 2.7 in dependencies
- Type check the project
Your Environment
- Device: -
- OS: macos
- Browser -
- Version -
Additional context
CombinedVueInstance
has additional argument SetupBindings
in its type:
export type CombinedVueInstance<
Instance extends Vue,
Data,
Methods,
Computed,
Props,
SetupBindings
> = Data &
Methods &
Computed &
Props &
Instance &
(SetupBindings extends void ? {} : SetupBindings)
I believe that CombinedVueInstance
is considered internal by Vue so ideally it wouldn't be referenced directly.
Swedish-li
Metadata
Metadata
Assignees
Labels
Type: BugSomething isn't workingSomething isn't working