Swiftgram/AsyncDisplayKit/ASImageNode+AnimatedImage.h
Garrett Moon beba9031ef Expose public properties properly
Reviewers: rmalik

Reviewed By: rmalik

Differential Revision: https://phabricator.pinadmin.com/D82227
2016-04-13 14:23:02 -07:00

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