15 lines
317 B
Objective-C
15 lines
317 B
Objective-C
#import "Foundation/Foundation.h"
|
|
#import <React/RCTEventEmitter.h>
|
|
#import <React/RCTConvert.h>
|
|
|
|
#ifdef RCT_NEW_ARCH_ENABLED
|
|
#import "RNUtilsSpec.h"
|
|
|
|
@interface RNUtils : RCTEventEmitter <NativeRNUtilsSpec>
|
|
#else
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
@interface RNUtils : RCTEventEmitter <RCTBridgeModule>
|
|
#endif
|
|
|
|
@end
|