mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-08 21:49:41 +00:00
* Add support for piping arbitrary user info from ASImageDownloader to the ASNetworkImageNodeDelegate * s/source/sourceType * Fix stuff and take Michael's advice
23 lines
514 B
Objective-C
23 lines
514 B
Objective-C
//
|
|
// ASNetworkImageLoadInfo+Private.h
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Adlai on 1/30/18.
|
|
// Copyright © 2018 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <AsyncDisplayKit/ASNetworkImageLoadInfo.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ASNetworkImageLoadInfo ()
|
|
|
|
- (instancetype)initWithURL:(NSURL *)url
|
|
sourceType:(ASNetworkImageSourceType)sourceType
|
|
downloadIdentifier:(nullable id)downloadIdentifier
|
|
userInfo:(nullable id)userInfo;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|