Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/eitherway/lib/async/mod.ts>Tasks.InferredFailureTuple

Yet Another Option and Result Implementation - providing safe abstractions for fallible flows inspired by F# and Rust
Latest
type alias Tasks.InferredFailureTuple
import { type Tasks } from "https://deno.land/x/eitherway@0.10.0/lib/async/mod.ts";
const { InferredFailureTuple } = Tasks;

Use this to infer the encapsulated <E> types from a tuple of Task<T,E>

Type Parameters

P extends Readonly<ArrayLike<PromiseLike<Result<unknown, unknown>>>>
definition: [i in keyof P]: P[i] extends PromiseLike<Result<unknown, infer E>> ? E : never