1
0
mirror of https://github.com/danog/Telegram.git synced 2025-01-06 04:58:56 +01:00
Telegram/Watch/Extension/TGStickerPacksController.h

20 lines
555 B
C
Raw Normal View History

2015-10-01 18:19:52 +02:00
#import "TGInterfaceController.h"
@class TGBridgeStickerPack;
@interface TGStickerPacksControllerContext : NSObject <TGInterfaceContext>
@property (nonatomic, readonly) NSArray *stickerPacks;
@property (nonatomic, copy) void (^completionBlock)(TGBridgeStickerPack *stickerPack);
- (instancetype)initWithStickerPacks:(NSArray *)stickerPacks;
@end
@interface TGStickerPacksController : TGInterfaceController
@property (nonatomic, weak) IBOutlet WKInterfaceTable *table;
@property (nonatomic, weak) IBOutlet WKInterfaceImage *activityIndicator;
@end