我想知道在Typescript中使用(ab)使用模块作为命名空间是多么可取。下面的代码片段是一种常见的做法吗?或者有更好的方法:
module Blend {
export module layout {
export module container {
export module box {
export class Box extends Blend.layout.container.Layout {
}
}
}
}
}