TypeScript/tests/baselines/reference/internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.types
2014-08-28 12:40:58 -07:00

27 lines
381 B
Plaintext

=== tests/cases/compiler/internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts ===
class A {
>A : A
aProp: string;
>aProp : string
}
module A {
>A : typeof A
export interface X { s: string }
>X : X
>s : string
export var a = 10;
>a : number
}
module B {
>B : unknown
import Y = A;
>Y : typeof Y
>A : Y
}