softchatjs-react-native
Version:
React native UI SDK for softchatjs-core. Create a free account at: https://www.softchatjs.com
19 lines • 467 B
JavaScript
// src/helpers/haptics.ts
import * as ExpoHaptics from "expo-haptics";
var Haptics = class {
static success() {
ExpoHaptics.notificationAsync(
ExpoHaptics.NotificationFeedbackType.Success
);
}
static light() {
ExpoHaptics.impactAsync(ExpoHaptics.ImpactFeedbackStyle.Light);
}
static medium() {
ExpoHaptics.impactAsync(ExpoHaptics.ImpactFeedbackStyle.Medium);
}
};
export {
Haptics as default
};
//# sourceMappingURL=haptics.mjs.map