1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
//// [tests/cases/conformance/jsdoc/declarations/jsDeclarationsExportSpecifierNonlocal.ts] ////
//// [source.js]
export class Thing {}
export class OtherThing {}
//// [index.js]
export { Thing, OtherThing as default } from "./source";
//// [source.js]
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.OtherThing = exports.Thing = void 0;
var Thing = /** @class */ (function () {
function Thing() {
}
return Thing;
}());
exports.Thing = Thing;
var OtherThing = /** @class */ (function () {
function OtherThing() {
}
return OtherThing;
}());
exports.OtherThing = OtherThing;
//// [index.js]
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = exports.Thing = void 0;
var source_1 = require("./source");
Object.defineProperty(exports, "Thing", { enumerable: true, get: function () { return source_1.Thing; } });
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return source_1.OtherThing; } });
//// [source.d.ts]
export class Thing {
}
export class OtherThing {
}
//// [index.d.ts]
export { Thing, OtherThing as default } from "./source";
|