mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
16 lines
470 B
Objective-C
16 lines
470 B
Objective-C
#import "TGModernConversationAssociatedInputPanel.h"
|
|
|
|
@class TGViewController;
|
|
@class TGDocumentMediaAttachment;
|
|
|
|
@interface TGStickerAssociatedInputPanel : TGModernConversationAssociatedInputPanel
|
|
|
|
@property (nonatomic, weak) TGViewController *controller;
|
|
@property (nonatomic, copy) void (^documentSelected)(TGDocumentMediaAttachment *);
|
|
|
|
- (NSArray *)documentList;
|
|
- (void)setDocumentList:(NSArray *)documentList;
|
|
- (void)setTargetOffset:(CGFloat)targetOffset;
|
|
|
|
@end
|