TypeScript/tests/baselines/reference/parserClassDeclaration25.js

18 lines
289 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [parserClassDeclaration25.ts]
interface IList<T> {
data(): T;
next(): string;
}
class List<U> implements IList<U> {
data(): U;
next(): string;
}
//// [parserClassDeclaration25.js]
var List = (function () {
function List() {
}
return List;
})();