Output type of an Unary.
const unary: Unary<number, string> = n => `${n}`;UnaryOutput<typeof unary> // `string`
Output type of an Unary.
Example