mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
15 lines
373 B
Objective-C
15 lines
373 B
Objective-C
#import <SSignalKit/SSignalKit.h>
|
|
|
|
@class TGDocumentMediaAttachment;
|
|
|
|
@interface TGRecentGifsSignal : NSObject
|
|
|
|
+ (void)clearRecentGifs;
|
|
+ (void)sync;
|
|
+ (void)addRecentGifFromDocument:(TGDocumentMediaAttachment *)document;
|
|
+ (void)addRemoteRecentGifFromDocuments:(NSArray *)documents;
|
|
+ (void)removeRecentGifByDocumentId:(int64_t)documentId;
|
|
+ (SSignal *)recentGifs;
|
|
|
|
@end
|