swc/tests/tsc-references/externalModules/multipleExportDefault3/input.ts/es5.1.normal/output.js

14 lines
317 B
JavaScript

function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
export default {
uhoh: "another default"
};
var C = function C() {
"use strict";
_classCallCheck(this, C);
};
export { C as default };