UNPKG

veffect

Version:

powerful TypeScript validation library built on the robust foundation of Effect combining exceptional type safety, high performance, and developer experience. Taking inspiration from Effect's functional principles, VEffect delivers a balanced approach tha

22 lines 423 B
/** @internal */ export const OP_EMIT = "Emit"; /** @internal */ export const OP_HALT = "Halt"; /** @internal */ export const OP_END = "End"; /** @internal */ export const emit = elements => ({ _tag: OP_EMIT, elements }); /** @internal */ export const halt = cause => ({ _tag: OP_HALT, cause }); /** @internal */ export const end = reason => ({ _tag: OP_END, reason }); //# sourceMappingURL=handoffSignal.js.map