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

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

§Type Parameters

§Type

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