TypeScript/tests/baselines/reference/innerExtern.types
2015-04-15 16:44:20 -07:00

30 lines
410 B
Plaintext

=== tests/cases/compiler/innerExtern.ts ===
module A {
>A : typeof A
export declare module BB {
>BB : typeof BB
export var Elephant;
>Elephant : any
}
export module B {
>B : typeof B
export class C {
>C : C
x = BB.Elephant.X;
>x : any
>BB.Elephant.X : any
>BB.Elephant : any
>BB : typeof BB
>Elephant : any
>X : any
}
}
}