You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, some callbacks (onMove, onMoveEnd, etc) could be attributed to a user event by the presence of an originalEvent property.
Those callback events still include an originalEvent property for user triggered callbacks (eg. dragging the map for onMoveEnd); however, the typescript type of the ViewStateChangeEvent does not include {originalEvent?: MouseEvent} in the type definition.
I'm uncertain whether the intention is to move away from the usage of that property; however, it's been a useful attribute.
Expected Behavior
ViewStateChangeEvent typescript type includes {originalEvent?: MouseEvent}
Steps to Reproduce
Reference event.originalEvent in code. Typescript error:
TS2339: Property originalEvent does not exist on type ViewStateChangeEvent
Description
Previously, some callbacks (onMove, onMoveEnd, etc) could be attributed to a user event by the presence of an originalEvent property.
Those callback events still include an originalEvent property for user triggered callbacks (eg. dragging the map for onMoveEnd); however, the typescript type of the ViewStateChangeEvent does not include {originalEvent?: MouseEvent} in the type definition.
I'm uncertain whether the intention is to move away from the usage of that property; however, it's been a useful attribute.
Expected Behavior
ViewStateChangeEvent typescript type includes {originalEvent?: MouseEvent}
Steps to Reproduce
Reference event.originalEvent in code. Typescript error:
TS2339: Property originalEvent does not exist on type ViewStateChangeEvent
Environment
Logs
No response
The text was updated successfully, but these errors were encountered: