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

25 lines
330 B
Plaintext

=== tests/cases/compiler/declFileModuleContinuation.ts ===
module A.C {
>A : typeof A
>C : any
export interface Z {
>Z : Z
}
}
module A.B.C {
>A : typeof A
>B : typeof B
>C : typeof C
export class W implements A.C.Z {
>W : W
>A.C.Z : any
>A.C : any
>A : typeof A
>C : any
>Z : A.C.Z
}
}