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

24 lines
340 B
Plaintext

=== tests/cases/compiler/internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts ===
class A {
>A : A
aProp: string;
>aProp : string
}
module A {
>A : typeof A
export interface X { s: string }
>X : X
>s : string
}
module B {
>B : any
import Y = A;
>Y : typeof Y
>A : Y
}