@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
27 lines (20 loc) • 400 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Pending = exports.Done = void 0;
class Done {
constructor(value) {
this.value = value;
this._tag = "Done";
}
}
exports.Done = Done;
class Pending {
constructor(joiners) {
this.joiners = joiners;
this._tag = "Pending";
}
}
exports.Pending = Pending;
//# sourceMappingURL=state.js.map