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

Datum

import type { Datum } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/datum.ts";

The Datum type represents an optional value with loading states.

type Datum<A> =
| Refresh<A>
| Replete<A>;

§Type Parameters

§Type