mirror of
https://github.com/status-im/status-react.git
synced 2025-02-03 14:46:05 +00:00
3617fefbe9
This reverts commit c47fc34127600cf08d2e21cec52af8ca79c52546. Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
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
|