Callable argument has unused name

Is there any reason the parameter name inside a function type exists? function greeter(fn: (a: string) => void) { fn("Hello, World"); } In the above example (from the docs) why is a needed? >Solution : The "Note" in the documentation you linked makes the primary point: Note that the parameter name is required. The function… Read More Callable argument has unused name