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

constPending

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

Create a constant Pending datum.

@example
import { constPending } from "./datum.ts";

const datum = constPending();
console.log(datum); // { tag: "Pending" }
function constPending<A = never>(): Datum<A>;
§
constPending<A = never>(): Datum<A>
[src]

§Type Parameters

§
A = never
[src]

§Return Type