Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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;
}
;

§Type Parameters

§Type

§
{
readonly tag: "Replete";
readonly value: A;
}
[src]