TypeScript/tests/baselines/reference/arrayReferenceWithoutTypeArgs.js

14 lines
241 B
JavaScript
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) {
};
return X;
})();