@tempots/std

Fun3 type

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

Signature:

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