@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
22 lines (17 loc) • 373 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Running = void 0;
class Running {
constructor(nextKey, _finalizers) {
this.nextKey = nextKey;
this._finalizers = _finalizers;
this._tag = "Running";
}
finalizers() {
return this._finalizers;
}
}
exports.Running = Running;
//# sourceMappingURL=Running.js.map