@tempots/std

Fun4 type

Represents a function that takes four arguments of types A, B, C, and D, and returns a value of type R.

Signature:

export type Fun4 = (a: A, b: B, c: C, d: D) => R;