mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-11 15:10:37 +00:00
21 lines
423 B
Objective-C
21 lines
423 B
Objective-C
//
|
|
// ASPINRemoteImageDownloader.h
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Garrett Moon on 2/5/16.
|
|
// Copyright © 2016 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "ASImageProtocols.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ASPINRemoteImageDownloader : NSObject <ASImageCacheProtocol, ASImageDownloaderProtocol>
|
|
|
|
+ (ASPINRemoteImageDownloader *)sharedDownloader;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|