20 lines
316 B
Objective-C
20 lines
316 B
Objective-C
//
|
|
// RCTPushy.h
|
|
// RCTPushy
|
|
//
|
|
// Created by LvBingru on 2/19/16.
|
|
// Copyright © 2016 erica. All rights reserved.
|
|
//
|
|
|
|
#if __has_include(<React/RCTBridge.h>)
|
|
#import <React/RCTBridgeModule.h>
|
|
#else
|
|
#import "RCTBridgeModule.h"
|
|
#endif
|
|
|
|
@interface RCTPushy : NSObject<RCTBridgeModule>
|
|
|
|
+ (NSURL *)bundleURL;
|
|
|
|
@end
|