Result
import type { Result } from "https://raw.githubusercontent.com/takker99/async-lib/0.2.0/mod.ts";
type Result<T, E = unknown> = {
success: true;
value: T;
} | {success: false;
reason: E;
};import type { Result } from "https://raw.githubusercontent.com/takker99/async-lib/0.2.0/mod.ts";