Currently, I am developing a web application project where the server language is VB.net and the frontend is built using Angular (typescript). One issue I have been facing is that every time a class model is created in VB.net, the same class needs to be manually replicated in front end typescript. Is there a way we can automate this process and generate the typescript for the frontend automatically?
I did attempt using typegen, however, it seems to only work with C# at the moment.