RightCopyimport type { Right } from "https://raw.githubusercontent.com/baetheus/fun/main/either.ts";type Right<R> = {tag: "Right"; right: R; };§Type Parameters§R[src]§Type§{tag: "Right"; right: R; }[src]