typia
Version:
Superfast runtime validators with only one line
11 lines • 606 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.tags = void 0;
// `tags` is the only runtime value `@typia/interface` exports. Everything
// above must stay `export type`: the `.mjs` build transpiles per file
// (rolldown/oxc, no cross-file type info), so a plain re-export of a type
// would survive as a runtime import and crash against the CJS-only
// `@typia/interface`.
var interface_1 = require("@typia/interface");
Object.defineProperty(exports, "tags", { enumerable: true, get: function () { return interface_1.tags; } });
//# sourceMappingURL=re-exports.js.map