TypeScript/tests/baselines/reference/innerExtern.types
2014-08-25 11:04:30 -07:00

29 lines
389 B
Text

=== tests/cases/compiler/innerExtern.ts ===
module A {
>A : A
export declare module BB {
>BB : BB
export var Elephant;
>Elephant : any
}
export module B {
>B : 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
}
}
}