@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
23 lines (17 loc) • 459 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.VersionedTypeId = exports.Versioned = void 0;
require("../../../Operator/index.js");
// ets_tracing: off
const VersionedTypeId = /*#__PURE__*/Symbol();
exports.VersionedTypeId = VersionedTypeId;
class Versioned {
constructor(value) {
this.value = value;
this._typeId = VersionedTypeId;
}
}
exports.Versioned = Versioned;
//# sourceMappingURL=index.js.map