import { type Function } from "@"; /** * ***Brief*** * A type alias for a `Function` that supports asynchronous operation. * * ***Example*** * ```ts * const fetch: AsyncFunction = async (url: string) => /// ...; * ``` */ export type AsyncFunction = Function>;