mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
17 lines
380 B
Objective-C
17 lines
380 B
Objective-C
#import "TGMemoryImageCache.h"
|
|
#import <SSignalKit/SSignalKit.h>
|
|
|
|
@interface TGMemoryImageCacheEvent : NSObject
|
|
|
|
@property (nonatomic, strong, readonly) UIImage *image;
|
|
@property (nonatomic, strong, readonly) NSDictionary *attributes;
|
|
|
|
@end
|
|
|
|
@interface TGMemoryImageCache (Signals)
|
|
|
|
- (SSignal *)signalForKey:(NSString *)key;
|
|
- (SSignal *)imageSignalForKey:(NSString *)key;
|
|
|
|
@end
|