From 618ef02f4a0da31d613bca40019f1abf511cbb1e Mon Sep 17 00:00:00 2001 From: pchalupa Date: Wed, 11 Mar 2026 21:41:22 +0100 Subject: [PATCH] Add `eventCount` property --- .../react-native/Libraries/Components/TextInput/TextInput.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts b/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts index b3ca1560c224..7459197e6dee 100644 --- a/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts +++ b/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts @@ -504,6 +504,7 @@ export type TextInputSelectionChangeEvent = */ export interface TextInputKeyPressEventData { key: string; + eventCount: number; } /**