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

Left

import type { Left } from "https://raw.githubusercontent.com/baetheus/fun/main/either.ts";
type Left<L> = {
tag: "Left";
left: L;
}
;

§Type Parameters

§Type

§
{
tag: "Left";
left: L;
}
[src]