type alias Exitimport { type Exit } from "https://deno.land/x/effection@3.0.3/lib/run/types.ts"; Type ParametersTdefinition: { type: "aborted"; } | { type: "crashed"; error: Error; } | { type: "result"; result: Result<T>; }