From 407b09d3798494b9f827a064d284a7685e33b92f Mon Sep 17 00:00:00 2001 From: John Ferlito Date: Sun, 13 Feb 2022 12:27:43 +1100 Subject: [PATCH] swipeKey missing from types --- types/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/index.d.ts b/types/index.d.ts index bd71cf6..28b25ec 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -213,6 +213,7 @@ export class SwipeRow extends Component>> { closeRowWithoutAnimation: () => void; render(): JSX.Element; manuallySwipeRow: (toValue: number, onAnimationEnd?: () => void) => void; + swipeKey: string; } type IRenderListViewProps = Omit, 'useFlatList'>, 'useSectionList'>, 'renderListView'>;