Closed
Description
This used to be on codeplex and I cannot find a reference here.
https://typescript.codeplex.com/workitem/917
The problem is that I have project.d.ts and lets say that it has a Point class with simple {x,y} properties.
project-plugin-coolvector.d.ts might come along tomorrow, and that Plugin JS might add a z property to the existing Point class.
If project-plugin-coolvector.d.ts attempts to export a Point class with a z property. You get a duplicate error. I looked at the JQuery plugins example on DT but project.d.ts must contain classes, since Point has a constructor.
I see no way of being able to support the direction of the project in this instance.