Refresh
import type { Refresh } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/datum.ts";The Refresh state represents a datum that is refreshing with stale data.
type Refresh<A> = {
readonly tag: "Refresh";
readonly value: A;
};