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
The navigator.vibrate API is currently always defined. However, according to the navigator.vibrate MDN docs, this is currently not supported in Safari:
I'm proposing to update the Navigator interface to:
interfaceNavigator{// Proposed change from being required to being optionalvibrate?: (pattern: Iterable<number>)=>boolean;}