first commit

This commit is contained in:
Ichitux
2026-04-05 03:08:53 +02:00
commit 1082d36c12
28015 changed files with 3767672 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/** @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