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>;