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

Resolve

import type { Resolve } from "https://raw.githubusercontent.com/worker-tools/resolvable-promise/master/index.ts";
type Resolve<T> = (value: T | PromiseLike<T>) => void;

§Type Parameters

§Type

§
(value: T | PromiseLike<T>) => void
[src]