(options: HapticNotificationOptions)
| 175 | * options should be of the type `{ type: NotificationType.SUCCESS }` (or `WARNING`/`ERROR`) |
| 176 | */ |
| 177 | export const hapticNotification = (options: HapticNotificationOptions) => { |
| 178 | hapticAvailable() && HapticEngine.notification(options); |
| 179 | }; |
| 180 | |
| 181 | /** |
| 182 | * Use this to indicate success/failure/warning to the user. |
nothing calls this directly
no test coverage detected