TypeScript/tests/baselines/reference/ambientFundule.types

13 lines
194 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/ambientFundule.ts ===
declare function f();
>f : typeof f
2014-08-15 23:33:16 +02:00
declare module f { var x }
>f : typeof f
>x : any
2014-08-15 23:33:16 +02:00
declare function f(x);
>f : typeof f
>x : any
2014-08-15 23:33:16 +02:00