In C# I can do this:
using IAnyType = App.Namespace.Types.IAnyType ; class BaseClass : IAnyType { }
Is there a Typescript equivalent?
I too am annoyed that you can't alias things the way you might expect. What I've done is ended up using abbreviated 'namespaces' to keep things short.
import RSV = module("views/researchSectionView") var r = new RSV.ResearchSectionView();