Add C++ Turbo Module enum Event Emitter example (#46049)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/46049

## Changelog:

[General] [Added] - Add C++ Turbo Module enum Event Emitter example

Reviewed By: kentwilliam

Differential Revision: D61336742

fbshipit-source-id: 81ac54020f4d88dc3c1235541d613a59235069a3
This commit is contained in:
Christoph Purrer
2024-08-19 08:26:20 -07:00
committed by Facebook GitHub Bot
parent 0e805a953d
commit 6340662d4f
3 changed files with 7 additions and 0 deletions
@@ -81,6 +81,7 @@ export interface Spec extends TurboModule {
+onClick: EventEmitter<string>;
+onChange: EventEmitter<ObjectStruct>;
+onSubmit: EventEmitter<ObjectStruct[]>;
+onEvent: EventEmitter<EnumNone>;
+getArray: (arg: Array<ObjectStruct | null>) => Array<ObjectStruct | null>;
+getBool: (arg: boolean) => boolean;
+getConstants: () => ConstantsStruct;