I have this file:
export namespace Entities {
export namespace Foo {
}
export namespace Foo {
}
}
it compiles without error to:
export declare namespace Entities {
namespace Foo {
}
namespace Foo {
}
}
I would assume there would be a class of names? Foo clashing with Foo? I don't get it. I am on tsc v3.1.6
I have this file:
it compiles without error to:
I would assume there would be a class of names? Foo clashing with Foo? I don't get it. I am on tsc
v3.1.6