TypeScript/tests/baselines/reference/typeParametersInStaticProperties.js
2014-07-12 17:30:19 -07:00

12 lines
205 B
JavaScript

//// [typeParametersInStaticProperties.ts]
class foo<T> {
static P: T;
}
//// [typeParametersInStaticProperties.js]
var foo = (function () {
function foo() {
}
return foo;
})();