Closed
Description
See https://studio.nearprotocol.com/?f=XfZ2mUv for working example.
Basically if you have:
namespace Outer {
export class Inner {
}
}
it doesn't look that any references to Inner
actually work.
E.g. none of these compile so far:
let cannotDeclareVariable: Outer.Inner = null;
function cannotReturn(): Outer.Inner {
}
function cannotTakeAargument(arg: Outer.Inner): void {
}
Do you have any suggestion on how to fix this?