mirror of
https://github.com/status-im/status-react.git
synced 2025-01-10 11:06:25 +00:00
56c59c741f
[#bug] fix realm version
14 lines
369 B
Objective-C
14 lines
369 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <React/RCTBridgeModule.h>
|
|
#import "RCTLog.h"
|
|
#import <JavaScriptCore/JavaScriptCore.h>
|
|
#import "Jail.h"
|
|
|
|
@interface Status : NSObject <RCTBridgeModule>
|
|
+ (void)signalEvent:(const char *)signal;
|
|
+ (void)jailEvent:(NSString *)chatId
|
|
data:(NSString *)data;
|
|
+ (BOOL)JSCEnabled;
|
|
@property (nonatomic) Jail * jail;
|
|
@end
|