mirror of
https://github.com/danog/Telegram.git
synced 2024-12-11 08:59:48 +01:00
22 lines
636 B
Objective-C
22 lines
636 B
Objective-C
#import "TGInterfaceController.h"
|
|
|
|
@class TGBridgeContext;
|
|
@class TGBridgeStickerPack;
|
|
@class TGBridgeDocumentMediaAttachment;
|
|
|
|
@interface TGStickersControllerContext : NSObject <TGInterfaceContext>
|
|
|
|
@property (nonatomic, copy) void (^completionBlock)(TGBridgeDocumentMediaAttachment *sticker);
|
|
|
|
@end
|
|
|
|
@interface TGStickersController : TGInterfaceController
|
|
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceTable *table;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceImage *activityIndicator;
|
|
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceGroup *alertGroup;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *alertLabel;
|
|
|
|
@end
|