@tempots/std > Fun5
Represents a function that takes five arguments of types A, B, C, D, and E, and returns a value of type R.
Signature:
export type Fun5<A, B, C, D, E, R> = (a: A, b: B, c: C, d: D, e: E) => R;