2
我有一個class A
全局聲明:實例化從具有類型命名空間全局類型名稱相同
class A { }
我有namespace N
,其連同其他類型的有class A
還有:
namespace N {
class A { }
// other declarations
}
我怎麼能實例化全球class A
裏面的namespace N
?
namespace N {
export class B {
static getA(): A { // here
return new A(); // and here I want to refer global A, not N.A
}
}
}