Type Inference Lint Errors When Returning Mutation Result in Internal Action
When I assign the result of ctx.runMutation to a variable (e.g., const result = ...) and return it, I get a series of "implicitly has type 'any'" linter errors for the result and related variables. However, if I remove the assignment and the return statement (i.e., I don't assign or return the mutation result), the lint errors disappear.
Why does returning the result of ctx.runMutation in an internal action trigger these implicit 'any' type errors, and is there a recommended way to resolve this while still returning the mutation result?
