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

Sync

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

The Sync type represents a lazy computation that returns a value of type A.

type Sync<A> = () => A;

§Type Parameters

§Type

§
() => A
[src]