TypeScript/tests/baselines/reference/structuralTypeInDeclareFileForModule.types

11 lines
171 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/structuralTypeInDeclareFileForModule.ts ===
module M { export var x; }
>M : typeof M
>x : any
2014-08-15 23:33:16 +02:00
var m = M;
>m : typeof M
>M : typeof M
2014-08-15 23:33:16 +02:00