TypeScript/tests/baselines/reference/declFileClassWithStaticMethodReturningConstructor.js
Wesley Wigham c6c2c4c8d5
Hoist initial assignment to exported names in cjs to they are not blocked by bindings made by __exportStar (#37093)
* Hoist initial assignment to exported names in cjs to they are not blocked by bindings made by __exportStar

* Copy hoisted identifiers so they do not create sourcemaps

* Accept updated baselines
2020-02-28 13:25:28 -08:00

27 lines
658 B
TypeScript

//// [declFileClassWithStaticMethodReturningConstructor.ts]
export class Enhancement {
public static getType() {
return this;
}
}
//// [declFileClassWithStaticMethodReturningConstructor.js]
"use strict";
exports.__esModule = true;
exports.Enhancement = void 0;
var Enhancement = /** @class */ (function () {
function Enhancement() {
}
Enhancement.getType = function () {
return this;
};
return Enhancement;
}());
exports.Enhancement = Enhancement;
//// [declFileClassWithStaticMethodReturningConstructor.d.ts]
export declare class Enhancement {
static getType(): typeof Enhancement;
}