add sideborders prop (#3920)

This commit is contained in:
Samuel Newman 2024-05-08 21:44:49 +01:00 committed by GitHub
parent 750a5c899b
commit 701e508a1a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 1 deletions

View file

@ -25,6 +25,7 @@ export type ListProps<ItemT> = Omit<
onRefresh?: () => void
onItemSeen?: (item: ItemT) => void
containWeb?: boolean
sideBorders?: boolean
}
export type ListRef = React.MutableRefObject<FlatList_INTERNAL | null>