@tempots/std

Fun5 type

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: A, b: B, c: C, d: D, e: E) => R;