mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-02 00:17:02 +00:00
16 lines
400 B
Objective-C
16 lines
400 B
Objective-C
#import <LegacyComponents/TGModernGalleryItem.h>
|
|
#import <LegacyComponents/TGPhotoToolbarView.h>
|
|
|
|
@protocol TGMediaEditableItem;
|
|
@class TGMediaEditingContext;
|
|
|
|
@protocol TGModernGalleryEditableItem <TGModernGalleryItem>
|
|
|
|
@property (nonatomic, strong) TGMediaEditingContext *editingContext;
|
|
|
|
- (id<TGMediaEditableItem>)editableMediaItem;
|
|
- (TGPhotoEditorTab)toolbarTabs;
|
|
- (NSString *)uniqueId;
|
|
|
|
@end
|