TypeScript Optional Parameters in Callbacks
In TypeScript, optional parameters in callbacks are parameters that may or may not be provided when the callback function is invoked. They are denoted by a ? after the parameter name, allowing for more flexible function calls without requiring all arguments. Syntaxtype MyCallback = (param1: string,