@tempots/std > Fun1
Represents a function that takes one argument of type A and returns a value of type R.
A
R
Signature:
export type Fun1<A, R> = (a: A) => R;