TypeScript/tests/baselines/reference/arrayReferenceWithoutTypeArgs.js

13 lines
236 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [arrayReferenceWithoutTypeArgs.ts]
class X {
public f(a: Array) { }
}
//// [arrayReferenceWithoutTypeArgs.js]
var X = (function () {
function X() {
}
X.prototype.f = function (a) { };
2014-07-13 01:04:16 +02:00
return X;
})();