Subsequent property declarations must have the same type. Property 'store' must be of type 'Store', but here has type 'Store'. #1565
-
Having the following type clash with
|
Beta Was this translation helpful? Give feedback.
Answered by
chriskrycho
Sep 29, 2023
Replies: 1 comment
-
This is a variation on the “Conflicting Type Dependencies” problem documented here—so the solution is the same as in the docs: make sure you have only a single version of that type in your resolved dependency graph (not just top-level dependencies you specified, any copy at all). See the linked docs for more details! |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
chriskrycho
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a variation on the “Conflicting Type Dependencies” problem documented here—so the solution is the same as in the docs: make sure you have only a single version of that type in your resolved dependency graph (not just top-level dependencies you specified, any copy at all). See the linked docs for more details!