import { List } from "../list"; import { Satisfies } from "../type"; /** * function with arguments `A` and return type `R` * * @since 0.0.2 * * @example * ```ts * type e0 = Function // (...args: string[]) => number * ``` */ export type Function = (...args: Satisfies) => R; //# sourceMappingURL=function.d.ts.map