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
|