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

AnyPromise

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

A type for Promise over any, useful as an extension target for functions that take any Promise and do not need to unwrap the type.

type AnyPromise = Promise<any>;

§Type

§
Promise<any>
[src]