mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
15 lines
376 B
Objective-C
15 lines
376 B
Objective-C
#import "TGModernConversationAssociatedInputPanel.h"
|
|
|
|
#import <SSignalKit/SSignalKit.h>
|
|
|
|
@class TGBotComandInfo;
|
|
@class TGUser;
|
|
|
|
@interface TGModernConversationCommandsAssociatedPanel : TGModernConversationAssociatedInputPanel
|
|
|
|
@property (nonatomic, copy) void (^commandSelected)(TGBotComandInfo *, TGUser *);
|
|
|
|
- (void)setCommandListSignal:(SSignal *)commandListSignal;
|
|
|
|
@end
|