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 8ad2ff0 commit 3c50ffcCopy full SHA for 3c50ffc
src/components/DraggableFlatList.tsx
@@ -444,6 +444,5 @@ function DraggableFlatList<T>(
444
}
445
446
export default React.forwardRef(DraggableFlatList) as <T>(
447
- props: DraggableFlatListProps<T>,
448
- ref: React.ForwardedRef<FlatList<T>>
449
-)=>ReturnType<typeof DraggableFlatList>;
+ props: DraggableFlatListProps<T> & { ref?: React.ForwardedRef<FlatList<T>> }
+) => ReturnType<typeof DraggableFlatList>;
0 commit comments