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

11 lines
171 B
Plaintext

=== tests/cases/compiler/structuralTypeInDeclareFileForModule.ts ===
module M { export var x; }
>M : typeof M
>x : any
var m = M;
>m : typeof M
>M : typeof M