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