@tempots/std > Fun2
Represents a function that takes two arguments of types A and B, and returns a value of type R.
A
B
R
Signature:
export type Fun2<A, B, R> = (a: A, b: B) => R;