UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

15 lines (13 loc) 242 B
export class Done { constructor(value) { this.value = value; this._tag = "Done"; } } export class Pending { constructor(joiners) { this.joiners = joiners; this._tag = "Pending"; } } //# sourceMappingURL=state.mjs.map