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

13 lines
194 B
Plaintext

=== tests/cases/compiler/ambientFundule.ts ===
declare function f();
>f : typeof f
declare module f { var x }
>f : typeof f
>x : any
declare function f(x);
>f : typeof f
>x : any