@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
17 lines (15 loc) • 372 B
JavaScript
export const SucceededTypeId = /*#__PURE__*/Symbol();
export class Succeeded {
constructor(result) {
this.result = result;
this._typeId = SucceededTypeId;
}
}
export const IgnoredTypeId = /*#__PURE__*/Symbol();
export class Ignored {
constructor(result) {
this.result = result;
this._typeId = IgnoredTypeId;
}
}
//# sourceMappingURL=index.mjs.map