mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-04 10:30:42 +00:00
18 lines
385 B
Objective-C
18 lines
385 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@class MTSignal;
|
|
|
|
@interface MTHttpResponse : NSObject
|
|
|
|
@property (nonatomic, strong, readonly) NSDictionary *headers;
|
|
@property (nonatomic, strong, readonly) NSData *data;
|
|
|
|
@end
|
|
|
|
@interface MTHttpRequestOperation : NSObject
|
|
|
|
+ (MTSignal *)dataForHttpUrl:(NSURL *)url;
|
|
+ (MTSignal *)dataForHttpUrl:(NSURL *)url headers:(NSDictionary *)headers;
|
|
|
|
@end
|