Both
import type { Both } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/these.ts";The Both type represents a partial success with both left and right values.
type Both<B, A> = {
tag: "Both";
left: B;
right: A;
};import type { Both } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/these.ts";The Both type represents a partial success with both left and right values.