TypeScript/tests/cases/compiler/exportAssignmentWithoutIdentifier1.ts
2014-07-12 17:30:19 -07:00

9 lines
137 B
TypeScript

//@module: commonjs
function Greeter() {
//...
}
Greeter.prototype.greet = function () {
//...
}
export = new Greeter();