Closed
Description
There's been some previous discussion about this https://typescript.codeplex.com/workitem/2047 but nothing seems to have come of it. I've got a real scenario where this is getting in the way.
I'm trying to make a .d.ts file for greensock's gsap TweenMax but I have an issue where TweenMax extends TweenLite, which has a static to(target:Object, duration:number, vars:Object):TweenLite
, and TweenMax has a static to(target:Object, duration:number, vars:Object):TweenMax
.
I can't use the TweenMax.to method because it's being hidden by the TweenLite.to, which makes most of the module useless.
If there's a way to make the definition work as intended I'd love to hear it, otherwise it would be nice to see this fixed.