mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-13 14:59:23 +00:00
16 lines
369 B
Objective-C
16 lines
369 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface TGDataResource : NSObject
|
|
|
|
- (NSData *)data;
|
|
- (NSInputStream *)stream;
|
|
- (UIImage *)image;
|
|
- (bool)isImageDecoded;
|
|
|
|
- (instancetype)initWithData:(NSData *)data;
|
|
- (instancetype)initWithInputStream:(NSInputStream *)stream;
|
|
- (instancetype)initWithImage:(UIImage *)image decoded:(bool)decoded;
|
|
|
|
@end
|