Closed
Description
It seems to me, it's very inconvenient, that import declaration can't have none qualified symbol as target. By the reason I have to use next way to do this:
class S {}
export type SS = S;
export var SS = S;
Maybe, removing the qualified name restriction will be more convenient than combination of type alias and var alias.