//// [parserClassDeclaration25.ts] interface IList { data(): T; next(): string; } class List implements IList { data(): U; next(): string; } //// [parserClassDeclaration25.js] var List = (function () { function List() { } return List; })();