mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-28 06:00:43 +00:00
26 lines
919 B
Objective-C
26 lines
919 B
Objective-C
#import <LegacyComponents/TGMediaPickerGalleryItem.h>
|
|
#import <LegacyComponents/TGModernGallerySelectableItem.h>
|
|
#import <LegacyComponents/TGModernGalleryEditableItem.h>
|
|
#import <AVFoundation/AVFoundation.h>
|
|
|
|
@class TGMediaAssetFetchResult;
|
|
@protocol TGMediaEditAdjustments;
|
|
|
|
@interface TGMediaPickerGalleryVideoItem : TGMediaPickerGalleryItem <TGModernGallerySelectableItem, TGModernGalleryEditableItem>
|
|
|
|
@property (nonatomic, readonly) SSignal *avAsset;
|
|
@property (nonatomic, readonly) CGSize dimensions;
|
|
- (SSignal *)durationSignal;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface TGMediaPickerGalleryFetchResultItem : TGMediaPickerGalleryItem <TGModernGallerySelectableItem, TGModernGalleryEditableItem>
|
|
|
|
@property (nonatomic, readonly) TGMediaPickerGalleryItem<TGModernGallerySelectableItem, TGModernGalleryEditableItem> *backingItem;
|
|
|
|
- (instancetype)initWithFetchResult:(TGMediaAssetFetchResult *)fetchResult index:(NSUInteger)index;
|
|
|
|
@end
|