TypeScript/tests/cases/compiler/namespacesDeclaration.ts
2015-06-17 21:20:20 -07:00

9 lines
No EOL
136 B
TypeScript

// @declaration: true
module M {
export namespace N {
export module M2 {
export interface I {}
}
}
}