Replete
import type { Replete } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/datum.ts";The Replete state represents a datum that has been fully loaded.
type Replete<A> = {
readonly tag: "Replete";
readonly value: A;
};