Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

These

import type { These } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/these.ts";

The These type represents either a complete failure (Left), complete success (Right), or partial success (Both).

type These<B, A> = Left<B> | Right<A> | Both<B, A>;

§Type Parameters

§Type

§
Left<B> | Right<A> | Both<B, A>
[src]