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

21 lines
316 B
Plaintext

=== tests/cases/compiler/consumer.ts ===
import x = require('./foo');
>x : typeof x
x.Y // .ts should be picked
>x.Y : number
>x : typeof x
>Y : number
=== tests/cases/compiler/foo.ts ===
module M2 {
>M2 : typeof M2
export var Y = 1;
>Y : number
>1 : number
}
export = M2
>M2 : typeof M2