TypeScript/tests/baselines/reference/namespacesDeclaration.types
2015-06-17 21:20:20 -07:00

17 lines
215 B
Plaintext

=== tests/cases/compiler/namespacesDeclaration.ts ===
module M {
>M : any
export namespace N {
>N : any
export module M2 {
>M2 : any
export interface I {}
>I : I
}
}
}