mirror of
https://github.com/status-im/react-native-config.git
synced 2025-03-01 07:20:42 +00:00
13 lines
242 B
Objective-C
13 lines
242 B
Objective-C
#if __has_include("RCTBridgeModule.h")
|
|
#import "RCTBridgeModule.h"
|
|
#else
|
|
#import <React/RCTBridgeModule.h>
|
|
#endif
|
|
|
|
@interface ReactNativeConfig : NSObject <RCTBridgeModule>
|
|
|
|
+ (NSDictionary *)env;
|
|
+ (NSString *)envFor: (NSString *)key;
|
|
|
|
@end
|