import type { AsyncExit, Rejection } from "./model"; /* * ------------------------------------------- * AsyncExit Constructors * ------------------------------------------- */ export const failure = (e: E): Rejection => ({ _tag: "Failure", error: e }); export const success = (a: A): AsyncExit => ({ _tag: "Success", value: a }); export const interrupted = (): Rejection => ({ _tag: "Interrupt" });