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

Awaitable

import type { Awaitable } from "https://raw.githubusercontent.com/worker-tools/router/master/index.ts";
type Awaitable<T> = T | PromiseLike<T>;

§Type Parameters

§Type

§
T | PromiseLike<T>
[src]