Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/effection/lib/run/types.ts>Exit

Structured concurrency and effects for JavaScript
Go to Latest
type alias Exit
import { type Exit } from "https://deno.land/x/effection@3.0.3/lib/run/types.ts";
definition: { type: "aborted"; } | { type: "crashed"; error: Error; } | { type: "result"; result: Result<T>; }