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

Both

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

The Both type represents a partial success with both left and right values.

type Both<B, A> = {
tag: "Both";
left: B;
right: A;
}
;

§Type Parameters

§Type

§
{
tag: "Both";
left: B;
right: A;
}
[src]