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

18 lines
332 B
JavaScript

//// [commentOnClassMethod1.ts]
class WebControls {
/**
* Render a control
*/
createControl(): any {
}
}
//// [commentOnClassMethod1.js]
var WebControls = (function () {
function WebControls() {
}
WebControls.prototype.createControl = function () {
};
return WebControls;
})();