/** * ***Brief*** * Represents a generic function type that takes a single argument and returns a value. * * ***Example*** * ```ts * const addOne: Function = (x: bigint) => x += 1n; * ``` */ export type Function = (payload: T1) => T2;