In Leaflet map whenReady event provides map component to whenReady callback as below: ``` whenReady(callback, context) { if (this._loaded) { callback.call(context || this, {target: this}); } else { this.on('load', callback, context); } return this; } ``` But MapContainer has whenReady function with no arguments ``` whenReady?: () => void ``` Is it possible to add those missing argument to whenReady callback?