Output of the function.
Generic function type (safer than using any
).
This type is a generic function type, for callbacks and other places where any type of function can be received.
const example = (callback: Function) => callback("test");
Rest
...input: ArgumentsOutput of the function.
Arguments of the function.