From 7b212ce75c75cd2a79ebe087a3d25e53dd9283ad Mon Sep 17 00:00:00 2001 From: Mbulelo Date: Fri, 8 Nov 2024 15:09:43 +0200 Subject: [PATCH] Adds object as a type on type ItemValue --- typings/Picker.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/Picker.d.ts b/typings/Picker.d.ts index 67a1e4b60..0e2175634 100644 --- a/typings/Picker.d.ts +++ b/typings/Picker.d.ts @@ -9,7 +9,7 @@ import type { } from 'react-native'; import { processColor } from 'react-native'; -export type ItemValue = number | string; +export type ItemValue = number | string | object; export interface PickerItemProps { label?: string;