import { type Closure } from "@"; /** * ***Brief*** * A type alias for a `Closure` that supports asynchronous operations. * * ***Example*** * ```ts * const fetch: AsyncClosure<[string], unknown> = async (url: string) => /// ...; * ``` */ export type AsyncClosure, T2> = Closure>;