From 11fc5309f3242ce5d223ef8898b01feb69e82e6a Mon Sep 17 00:00:00 2001 From: Chris Bobbe Date: Tue, 29 Jun 2021 17:24:00 -0400 Subject: [PATCH] react-native-action-sheet types: Make an object type explicitly inexact. An instance of #3452. --- src/react-native-action-sheet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/react-native-action-sheet.js b/src/react-native-action-sheet.js index 16ec503fc19..b9074575892 100644 --- a/src/react-native-action-sheet.js +++ b/src/react-native-action-sheet.js @@ -7,7 +7,7 @@ import type { BoundedDiff } from './generics'; /* eslint-disable flowtype/generic-spacing */ export type ShowActionSheetWithOptions = ( - { options: string[], cancelButtonIndex: number }, + { options: string[], cancelButtonIndex: number, ... }, (number) => void, ) => void;