mirror of
https://github.com/status-im/status-react.git
synced 2025-01-11 11:34:45 +00:00
14 lines
363 B
Objective-C
14 lines
363 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "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
|