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
TypeScript cannot correctly infer the type for response.body in got responses when using generics.
TypeScript infers the type of response.body as any despite specifying a generic type for the response, leading to loss of type safety.
TypeScript should infer the type of response.body based on the generic type specified in the got request, ensuring type safety.
import got, { Method, Response } from 'got'; interface ApiResponse<T> { code: number; message: string; result: T; success: boolean; timestamp: number; } async function fetchData<R>(url: string, method: Method, data?: unknown): Promise<R> { try { const response: Response<ApiResponse<R>> = await got<ApiResponse<R>>({ url, method, headers: { 'Content-Type': 'application/json' }, json: data, responseType: 'json' }); // this response.body is 'any' return response.body.result; } catch (e: any) { throw new Error(`Request failed: ${e.message}`); } } (async () => { const result = await fetchData<{ accessToken: string }>('https://example.com/api/token', 'POST', { key: 'value' }); console.log(result.accessToken); // TypeScript should infer the correct type here })();
The text was updated successfully, but these errors were encountered:
I also have the same problem The code is sourced from official instances https://github.com/sindresorhus/got/blob/main/documentation/3-streams.md#events
Sorry, something went wrong.
@jasonwwl [email protected] works fine, so this is not a problem with got itself, please upgrade on your side
No branches or pull requests
Describe the bug
TypeScript cannot correctly infer the type for response.body in got responses when using generics.
Actual behavior
TypeScript infers the type of response.body as any despite specifying a generic type for the response, leading to loss of type safety.
Expected behavior
TypeScript should infer the type of response.body based on the generic type specified in the got request, ensuring type safety.
Code to reproduce
Checklist
The text was updated successfully, but these errors were encountered: