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
Hi, The TypeScript support for type intersection does not seem to work. For example, if I have the two types defined below:
export type Type1 = { propA: string; };
export type Type2 = Type1 & { propB: string; };
The generator only shows a representation of Type1.
Expected: Both types and the relationship between them to be represented.
Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
The TypeScript support for type intersection does not seem to work. For example, if I have the two types defined below:
export type Type1 = {
propA: string;
};
export type Type2 = Type1 & {
propB: string;
};
The generator only shows a representation of Type1.
![image](https://private-user-images.githubusercontent.com/124408005/258844396-fa963cbd-e127-40a1-a2a5-40c588de11c9.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyNDI4MjYsIm5iZiI6MTczOTI0MjUyNiwicGF0aCI6Ii8xMjQ0MDgwMDUvMjU4ODQ0Mzk2LWZhOTYzY2JkLWUxMjctNDBhMS1hMmE1LTQwYzU4OGRlMTFjOS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjExJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxMVQwMjU1MjZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0zOGE2ODU5Y2VhZDA5MTQ4ZTg4NmZmMTQ1ZDg3NTAwZjA0NzZmY2M2NzlmNzQ2OWYzZTk5YWU4NWQxMDU5ZDVlJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.FAro2v21plC0luY1sFqzmpCo8US-vMeAodKDaPEIsc4)
Expected: Both types and the relationship between them to be represented.
Thank you!
The text was updated successfully, but these errors were encountered: