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

23 lines
338 B
TypeScript

//// [namespacesDeclaration.ts]
module M {
export namespace N {
export module M2 {
export interface I {}
}
}
}
//// [namespacesDeclaration.js]
//// [namespacesDeclaration.d.ts]
declare module M {
namespace N {
module M2 {
interface I {
}
}
}
}