We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
transformers.gen.ts
I have generated code like this:
export const getMyHistoryResponseTransformer = async (data: any): Promise<GetMyHistoryResponse> => { data = data.map(item => { return videoSchemaResponseTransformer(item); }); return data; };
TS complains about item type: error TS7006: Parameter 'item' implicitly has an 'any' type.
item
error TS7006: Parameter 'item' implicitly has an 'any' type.
No response
typescript: 5.6.3 @hey-api/openapi-ts: 0.55.3
The text was updated successfully, but these errors were encountered:
This should be fixed in the next release with the experimental parser!
Sorry, something went wrong.
No branches or pull requests
Description
I have generated code like this:
TS complains about
item
type:error TS7006: Parameter 'item' implicitly has an 'any' type.
Reproducible example or configuration
No response
OpenAPI specification (optional)
No response
System information (optional)
typescript: 5.6.3
@hey-api/openapi-ts: 0.55.3
The text was updated successfully, but these errors were encountered: