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

Async

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

The Async type represents a lazy, asynchronous computation that returns a value of type A.

type Async<A> = Sync<Promise<A>>;

§Type Parameters

§Type

§
Sync<Promise<A>>
[src]