TypeScript/tests/baselines/reference/typeParametersInStaticProperties.js

12 lines
205 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [typeParametersInStaticProperties.ts]
class foo<T> {
static P: T;
}
//// [typeParametersInStaticProperties.js]
var foo = (function () {
function foo() {
}
return foo;
})();