UNPKG

@effect-ts/system

Version:

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

19 lines (17 loc) 406 B
// ets_tracing: off import "../../../Operator/index.mjs"; export const DoneTypeId = /*#__PURE__*/Symbol(); export class Done { constructor(io) { this.io = io; this._typeId = DoneTypeId; } } export const SuspendTypeId = /*#__PURE__*/Symbol(); export class Suspend { constructor(journal) { this.journal = journal; this._typeId = SuspendTypeId; } } //# sourceMappingURL=index.mjs.map