mirror of
https://github.com/danog/Telegram.git
synced 2025-01-06 04:58:56 +01:00
20 lines
555 B
C
20 lines
555 B
C
|
#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
|