Unary function output type.
This type is used to get the output type of a Unary function.
const unary: Unary<number, string> = number => `${number}`;UnaryOutput<typeof unary> // `string` Copy
const unary: Unary<number, string> = number => `${number}`;UnaryOutput<typeof unary> // `string`
Unary
Type of the unary function to get the output type of.
Unary function output type.
Remarks
This type is used to get the output type of a Unary function.
Example
See
Unary