We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b379176 commit a67a2a3Copy full SHA for a67a2a3
src/types/react-native-reanimated.d.ts
@@ -0,0 +1,9 @@
1
+import type { EasingFunction as EasingFunctionType } from 'react-native-reanimated';
2
+
3
+declare module 'react-native-reanimated' {
4
+ namespace Animated {
5
+ // Extend the Animated namespace to include EasingFunction
6
+ // This is needed for @gorhom/bottom-sheet compatibility with react-native-reanimated v4
7
+ type EasingFunction = EasingFunctionType;
8
+ }
9
+}
tsconfig.json
@@ -8,8 +8,7 @@
"@env": ["./src/lib/env.js"]
},
10
"esModuleInterop": true,
11
- "checkJs": true,
12
- "skipLibCheck": true
+ "checkJs": true
13
14
"exclude": [
15
"node_modules",
0 commit comments