| 12345678910111213141516171819202122232425 |
- //
- // NativeBridge.h
- // hola
- //
- // Created by Leon on 2024/4/28.
- //
- #import <Foundation/Foundation.h>
- #import <React/RCTBridgeModule.h>
- #import <React/RCTBridge.h>
- #import <React/RCTEventDispatcher.h>
- #import <React/RCTEventEmitter.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NativeBridge : NSObject<RCTBridgeModule>{
-
- }
- //+ (IMBridge *)shareManager;
- - (void)receiveMessage:(NSDictionary *)message;
- @end
- NS_ASSUME_NONNULL_END
|