mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
15 lines
418 B
Objective-C
15 lines
418 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import <SSignalKit/SSignalKit.h>
|
|
|
|
#import "TGPeerId.h"
|
|
#import "TGShareContext.h"
|
|
#import "TGFileLocation.h"
|
|
|
|
@interface TGChatListAvatarSignal : NSObject
|
|
|
|
+ (SSignal *)chatListAvatarWithContext:(TGShareContext *)context location:(TGFileLocation *)location;
|
|
+ (SSignal *)chatListAvatarWithContext:(TGShareContext *)context letters:(NSString *)letters peerId:(TGPeerId)peerId;
|
|
|
|
@end
|