mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 19:40:19 +00:00
16 lines
316 B
Objective-C
16 lines
316 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import <LegacyComponents/TGModernGalleryItem.h>
|
|
|
|
@protocol TGModernGalleryDefaultFooterView <NSObject>
|
|
|
|
@optional
|
|
- (void)setTransitionOutProgress:(CGFloat)transitionOutProgress;
|
|
- (void)setContentHidden:(bool)contentHidden;
|
|
|
|
@required
|
|
|
|
- (void)setItem:(id<TGModernGalleryItem>)item;
|
|
|
|
@end
|