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
We believe we have an issue when generating from Python to TypeScript.
For some reason, the API may return T | null but the type generated using openapi-typescript is T | undefined
T | null
openapi-typescript
T | undefined
Can we have an option to modify the output to allow both T | null | undefined?
T | null | undefined
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We believe we have an issue when generating from Python to TypeScript.
For some reason, the API may return
T | null
but the type generated usingopenapi-typescript
isT | undefined
Can we have an option to modify the output to allow both
T | null | undefined
?The text was updated successfully, but these errors were encountered: