mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
11 lines
275 B
Objective-C
11 lines
275 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <React/RCTBridgeModule.h>
|
|
#import "RCTLog.h"
|
|
|
|
@interface Status : NSObject <RCTBridgeModule>
|
|
+ (void)signalEvent:(const char *)signal;
|
|
+ (void)jailEvent:(NSString *)chatId
|
|
data:(NSString *)data;
|
|
+ (BOOL)JSCEnabled;
|
|
@end
|