lpw
2021-01-26 49b8839fda3439edc31581527e84036e58f55f0f
frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMediaContent.h
@@ -18,18 +18,29 @@
#import <Foundation/Foundation.h>
#import <FBSDKShareKit/FBSDKSharingContent.h>
#import "FBSDKSharingContent.h"
NS_ASSUME_NONNULL_BEGIN
/**
 A protocol for media content (photo or video) to be shared.
 */
NS_SWIFT_NAME(ShareMedia)
@protocol FBSDKShareMedia <NSObject>
@end
/**
  A model for media content (photo or video) to be shared.
 */
NS_SWIFT_NAME(ShareMediaContent)
@interface FBSDKShareMediaContent : NSObject <FBSDKSharingContent>
/**
  Media to be shared.
 @return Array of the media (FBSDKSharePhoto or FBSDKShareVideo)
 */
@property (nonatomic, copy) NSArray *media;
@property (nonatomic, copy) NSArray<id<FBSDKShareMedia>> *media;
/**
  Compares the receiver to another media content.
@@ -39,3 +50,5 @@
- (BOOL)isEqualToShareMediaContent:(FBSDKShareMediaContent *)content;
@end
NS_ASSUME_NONNULL_END