mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-10 14:35:42 +00:00
Reviewers: rmalik Reviewed By: rmalik Differential Revision: https://phabricator.pinadmin.com/D82227
24 lines
373 B
Objective-C
24 lines
373 B
Objective-C
//
|
|
// ASImageNode+AnimatedImage.h
|
|
// Pods
|
|
//
|
|
// Created by Garrett Moon on 3/22/16.
|
|
//
|
|
//
|
|
|
|
#import "ASImageNode.h"
|
|
|
|
@interface ASImageNode ()
|
|
|
|
@property (atomic, assign) BOOL animatedImagePaused;
|
|
|
|
@end
|
|
|
|
@interface ASImageNode (AnimatedImage)
|
|
|
|
@property (nullable, atomic, strong) ASAnimatedImage *animatedImage;
|
|
|
|
- (void)coverImageCompleted:(UIImage *)coverImage;
|
|
|
|
@end
|