mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
18 lines
474 B
Objective-C
18 lines
474 B
Objective-C
#import <WatchKit/WatchKit.h>
|
|
|
|
@class TGBridgeContext;
|
|
@class TGBridgeUser;
|
|
@class TGBridgeChat;
|
|
|
|
@interface TGAvatarViewModel : NSObject
|
|
|
|
@property (nonatomic, weak) WKInterfaceGroup *group;
|
|
@property (nonatomic, weak) WKInterfaceLabel *label;
|
|
|
|
- (void)updateWithUser:(TGBridgeUser *)user context:(TGBridgeContext *)context isVisible:(bool (^)(void))isVisible;
|
|
- (void)updateWithChat:(TGBridgeChat *)chat isVisible:(bool (^)(void))isVisible;
|
|
|
|
- (void)updateIfNeeded;
|
|
|
|
@end
|