mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-11 08:13:28 +08:00
12 lines
282 B
Objective-C
12 lines
282 B
Objective-C
@import UIKit;
|
|
|
|
#import <React/RCTBridgeModule.h>
|
|
#import <PushKit/PushKit.h>
|
|
#import "RNNRouter.h"
|
|
#import <React/RCTEventEmitter.h>
|
|
|
|
|
|
@interface RNNotifications : RCTEventEmitter <RCTBridgeModule, RNNRerouterDelegate>
|
|
+ (NSString *)deviceTokenToString:(NSData *)deviceToken;
|
|
@end
|