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
Class within a class has wrong namespace. Causing me lots of conflicts.
Try generate the following:
namespace Company.Areas.Blah.Dtc { public class SomeDtc { public int? PageNumber { get; set; } public IList<Row> Rows { get; set; } public class Row
Results in:
declare module Company.Areas.Blah.Dtc { interface Row {
Ends up with a Row in the wrong namespace that can conflict with other Dtcs that also have a scoped class of Row.
declare module Company.Areas.Blah.Dtc.SomeDtc { interface Row {
The text was updated successfully, but these errors were encountered:
There's quite a few versions. I meant to log this issue to: https://github.com/denis-peshkov/TypeScriptDefinitionGenerator/
Sorry, something went wrong.
No branches or pull requests
Installed product versions
Description
Class within a class has wrong namespace. Causing me lots of conflicts.
Steps to recreate
Try generate the following:
Results in:
Current behavior
Ends up with a Row in the wrong namespace that can conflict with other Dtcs that also have a scoped class of Row.
Expected behavior
The text was updated successfully, but these errors were encountered: