We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b11dc7 commit 56e4b0eCopy full SHA for 56e4b0e
2 files changed
packages/react-native-sortables/src/integrations/haptics/adapters/index.native.ts
@@ -0,0 +1 @@
1
+export { default as ReactNativeHapticFeedback } from './react-native-haptic-feedback';
packages/react-native-sortables/src/integrations/haptics/adapters/index.ts
@@ -1 +1,7 @@
-export { default as ReactNativeHapticFeedback } from './react-native-haptic-feedback';
+import type { HapticOptions } from 'react-native-haptic-feedback';
2
+
3
+export const ReactNativeHapticFeedback = {
4
+ load: () => (_type: string, _options?: HapticOptions) => {
5
+ // noop
6
+ }
7
+};
0 commit comments