mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-22 02:58:45 -04:00
10 lines
389 B
Objective-C
10 lines
389 B
Objective-C
#import "YTQTMButton.h"
|
|
#import "YTILikeButtonRenderer.h"
|
|
|
|
@interface YTReelWatchLikesController : NSObject
|
|
@property (nonatomic, strong, readwrite) YTQTMButton *likeButton;
|
|
@property (nonatomic, strong, readwrite) YTQTMButton *dislikeButton;
|
|
- (id)likeModelForLikeButtonRenderer:(YTILikeButtonRenderer *)renderer;
|
|
- (void)updateLikeButtonWithModel:(id)model animated:(BOOL)animated;
|
|
@end
|