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

Right

import type { Right } from "https://raw.githubusercontent.com/baetheus/fun/main/either.ts";
type Right<R> = {
tag: "Right";
right: R;
}
;

§Type Parameters

§Type

§
{
tag: "Right";
right: R;
}
[src]