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