//// [genericFunctions0.ts] function foo (x: T) { return x; } var x = foo(5); // 'x' should be number //// [genericFunctions0.js] function foo(x) { return x; } var x = foo(5); // 'x' should be number //// [genericFunctions0.d.ts] declare function foo(x: T): T; declare var x: number;