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.
2 parents 8cc2c03 + 4e423b3 commit 4e44376Copy full SHA for 4e44376
src/types.ts
@@ -6,6 +6,11 @@ export type WebFlatListProps<T> = Props<T> & {
6
onScroll: (event: React.UIEvent<'div', UIEvent>) => void;
7
};
8
9
+export type WebFlatListProps<T> = Props<T> & {
10
+ ListEmptyComponent: React.ComponentType;
11
+ onScroll: (event: React.UIEvent<'div', UIEvent>) => void;
12
+};
13
+
14
export type Props<T = unknown> = Omit<
15
FlatListProps<T>,
16
'maintainVisibleContentPosition'
0 commit comments