Represents a function type that takes an argument of type A and returns a value of type B. Alias for (arg: A) => B.
A
B
(arg: A) => B
The argument type.
The return type.
Represents a function type that takes an argument of type
Aand returns a value of typeB. Alias for(arg: A) => B.