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
Replace this text with a short description Generating a model with an inheritance doesn't work
public class Foo { public string FooProp { get; set; } } public class Bar : Foo{ public string BarProp { get; set; } }
Generate .d.ts files for both classes
Bar.d.ts is created as
declare module server { interface bar extends Foo { barProp: string; } }
(Foo is not recogniced!)
Bar.d.ts is created correct
declare module server { interface bar extends server.foo { barProp: string; } }
The text was updated successfully, but these errors were encountered:
Hey @StefanKern, try this one https://github.com/denis-peshkov/TypeScriptDefinitionGenerator, I fixed this issue a long time ago.
Sorry, something went wrong.
Definitely a need in VS 2019.
No branches or pull requests
Installed product versions
Description
Replace this text with a short description
Generating a model with an inheritance doesn't work
Steps to recreate
Generate .d.ts files for both classes
Current behavior
Bar.d.ts is created as
(Foo is not recogniced!)
Expected behavior
Bar.d.ts is created correct
The text was updated successfully, but these errors were encountered: