2024-05-02 15:08:24 +00:00
|
|
|
//
|
|
|
|
// GooglePlusShare.h
|
|
|
|
// RNShare
|
|
|
|
//
|
|
|
|
// Created by Diseño Uno BBCL on 23-07-16.
|
|
|
|
// Copyright © 2016 Facebook. All rights reserved.
|
|
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
// import RCTConvert
|
|
|
|
#import <React/RCTConvert.h>
|
|
|
|
// import RCTBridge
|
|
|
|
#import <React/RCTBridge.h>
|
|
|
|
// import RCTUIManager
|
|
|
|
#import <React/RCTUIManager.h>
|
|
|
|
// import RCTLog
|
|
|
|
#import <React/RCTLog.h>
|
|
|
|
// import RCTUtils
|
|
|
|
#import <React/RCTUtils.h>
|
|
|
|
@interface GooglePlusShare : NSObject <RCTBridgeModule>
|
|
|
|
|
2024-10-29 07:36:43 +00:00
|
|
|
- (void) shareSingle:(NSDictionary *)options reject:(RCTPromiseRejectBlock)reject resolve:(RCTPromiseResolveBlock)resolve;
|
2024-05-02 15:08:24 +00:00
|
|
|
@end
|