EitherCopyimport type { Either } from "https://raw.githubusercontent.com/baetheus/fun/main/either.ts";type Either<L, R> = Left<L> | Right<R>;§Type Parameters§L[src]§R[src]§Type§Left<L> | Right<R>[src]