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

Either

import type { Either } from "https://raw.githubusercontent.com/baetheus/fun/main/either.ts";
type Either<L, R> = Left<L> | Right<R>;

§Type Parameters

§Type