From cb056eb31f8b24e6ab8a0cd9f338b6a7e7197605 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Mon, 14 Oct 2024 11:22:03 +0200 Subject: [PATCH] fix: fix type for flatListProps --- src/types/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/index.ts b/src/types/index.ts index 462e591..a9505f6 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -72,6 +72,6 @@ export interface IAutocompleteDropdownProps { ItemSeparatorComponent?: React.ComponentType | null EmptyResultComponent?: React.ReactElement emptyResultText?: string - flatListProps?: FlatListProps + flatListProps?: Partial> ref?: React.LegacyRef | undefined }