mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
17 lines
630 B
C
17 lines
630 B
C
|
#import <SSignalKit/SSignalKit.h>
|
||
|
|
||
|
#import "TGBridgeDocumentMediaAttachment.h"
|
||
|
#import "TGBridgeLocationMediaAttachment.h"
|
||
|
|
||
|
@interface TGBridgeSendMessageSignals : NSObject
|
||
|
|
||
|
+ (SSignal *)sendMessageWithPeerId:(int64_t)peerId text:(NSString *)text replyToMid:(int32_t)replyToMid;
|
||
|
|
||
|
+ (SSignal *)sendMessageWithPeerId:(int64_t)peerId location:(TGBridgeLocationMediaAttachment *)location replyToMid:(int32_t)replyToMid;
|
||
|
|
||
|
+ (SSignal *)sendMessageWithPeerId:(int64_t)peerId sticker:(TGBridgeDocumentMediaAttachment *)sticker replyToMid:(int32_t)replyToMid;
|
||
|
|
||
|
+ (SSignal *)forwardMessageWithPeerId:(int64_t)peerId mid:(int32_t)mid;
|
||
|
|
||
|
@end
|