🚨 Latest Research:Tanstack npm Packages Compromised in Ongoing Mini Shai-Hulud Supply-Chain Attack.Learn More
Socket
Book a DemoSign in
Socket

@nativescript-community/ui-image

Package Overview
Dependencies
Maintainers
8
Versions
131
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nativescript-community/ui-image - npm Package Compare versions

Comparing version
4.0.14
to
4.0.15
+8
-0
CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [4.0.15](https://github.com/nativescript-community/ui-image/compare/v4.0.14...v4.0.15) (2020-11-22)
**Note:** Version bump only for package @nativescript-community/ui-image
## [4.0.14](https://github.com/nativescript-community/ui-image/compare/v4.0.13...v4.0.14) (2020-11-17)

@@ -8,0 +16,0 @@

+5
-6

@@ -6,10 +6,9 @@ import { Color, Property, View } from '@nativescript/core';

export declare enum CLogTypes {
log,
info,
warning,
error
info = 0,
warning = 1,
error = 2
}
export declare const ImageViewTraceCategory = "NativescriptImage";
export declare const CLog: (type: CLogTypes, ...args: any[]) => void;
export declare let debug: boolean;
export declare function setDebug(value: boolean): void;
export declare const CLog: (type?: CLogTypes, ...args: any[]) => void;
export declare type Transition = 'fade' | 'curlUp';

@@ -16,0 +15,0 @@ export declare enum ScaleType {

@@ -1,16 +0,26 @@

import { Property, Trace, View, booleanConverter } from '@nativescript/core';
import { Property, View, booleanConverter } from '@nativescript/core';
import { isAndroid } from '@nativescript/core/platform';
export var CLogTypes;
(function (CLogTypes) {
CLogTypes[CLogTypes["log"] = Trace.messageType.log] = "log";
CLogTypes[CLogTypes["info"] = Trace.messageType.info] = "info";
CLogTypes[CLogTypes["warning"] = Trace.messageType.warn] = "warning";
CLogTypes[CLogTypes["error"] = Trace.messageType.error] = "error";
CLogTypes[CLogTypes["info"] = 0] = "info";
CLogTypes[CLogTypes["warning"] = 1] = "warning";
CLogTypes[CLogTypes["error"] = 2] = "error";
})(CLogTypes || (CLogTypes = {}));
export const ImageViewTraceCategory = 'NativescriptImage';
export const CLog = (type, ...args) => {
Trace.write(args.join(' '), ImageViewTraceCategory, type);
};
export let debug = false;
export function setDebug(value) {
debug = value;
}
export const CLog = (type = 0, ...args) => {
if (debug) {
if (type === 0) {
console.log('[ui-image]', ...args);
}
else if (type === 1) {
console.warn('[ui-image]', ...args);
}
else if (type === 2) {
console.error('[ui-image]', ...args);
}
}
};
export var ScaleType;

@@ -17,0 +27,0 @@ (function (ScaleType) {

@@ -67,3 +67,3 @@ export * from './image-common';

export declare class Img extends ImageBase {
nativeViewProtected: com.nativescript.image.DraweeView;
nativeViewProtected: com.facebook.drawee.view.SimpleDraweeView;
isLoading: boolean;

@@ -75,3 +75,3 @@ _canRequestImage: boolean;

onResumeNativeUpdates(): void;
createNativeView(): com.nativescript.image.DraweeView;
createNativeView(): com.facebook.drawee.view.SimpleDraweeView;
updateViewSize(imageInfo: any): void;

@@ -78,0 +78,0 @@ updateImageUri(): void;

var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t;
export * from './image-common';
import { ImageAsset, ImageSource, Trace, knownFolders, path } from '@nativescript/core';
import { ImageAsset, ImageSource, Utils, knownFolders, path } from '@nativescript/core';
import { android as androidApp } from '@nativescript/core/application';
import { isString } from '@nativescript/core/utils/types';
import { RESOURCE_PREFIX, ad, isFileOrResourcePath, isFontIconURI } from '@nativescript/core/utils/utils';
import { CLog, CLogTypes, EventData, ImageBase, ScaleType } from './image-common';
import { CLog, CLogTypes, EventData, ImageBase, ScaleType, debug } from './image-common';
let initialized = false;

@@ -227,2 +227,42 @@ let initializeConfig;

};
let DraweeView;
function initializeDraweeView() {
if (DraweeView) {
return;
}
var DraweeViewImpl = /** @class */ (function (_super) {
__extends(DraweeViewImpl, _super);
function DraweeViewImpl(owner, context) {
var _this = _super.call(this, context) || this;
_this.owner = owner;
return global.__native(_this);
}
DraweeViewImpl.prototype.onMeasure = function (widthMeasureSpec, heightMeasureSpec) {
var width = Utils.layout.getMeasureSpecSize(widthMeasureSpec);
var widthMode = Utils.layout.getMeasureSpecMode(widthMeasureSpec);
var height = Utils.layout.getMeasureSpecSize(heightMeasureSpec);
var heightMode = Utils.layout.getMeasureSpecMode(heightMeasureSpec);
var aspectRatio = this.getAspectRatio();
CLog(CLogTypes.info, 'onMeasure', this.owner.src, widthMeasureSpec, heightMeasureSpec, width, height, aspectRatio);
if (aspectRatio > 0) {
var finiteWidth = widthMode === Utils.layout.EXACTLY;
var finiteHeight = heightMode === Utils.layout.EXACTLY;
// let scale: { width; height };
if (this.imageWidth && this.imageHeight) {
// scale = this.owner.computeScaleFactor(width, height, finiteWidth, finiteHeight, (this as any).imageWidth, (this as any).imageHeight, aspectRatio);
if (!finiteWidth) {
widthMeasureSpec = Utils.layout.makeMeasureSpec(height * aspectRatio, Utils.layout.EXACTLY);
}
if (!finiteHeight) {
heightMeasureSpec = Utils.layout.makeMeasureSpec(width / aspectRatio, Utils.layout.EXACTLY);
}
}
CLog(CLogTypes.info, 'onMeasure scale', this.owner.src, aspectRatio, finiteWidth, finiteHeight, width, height, this.imageWidth, this.imageHeight);
}
_super.prototype.onMeasure.call(this, widthMeasureSpec, heightMeasureSpec);
};
return DraweeViewImpl;
}(com.facebook.drawee.view.SimpleDraweeView));
DraweeView = DraweeViewImpl;
}
export class Img extends ImageBase {

@@ -256,3 +296,4 @@ constructor() {

}
return new com.nativescript.image.DraweeView(this._context);
initializeDraweeView();
return new DraweeView(this, this._context);
}

@@ -396,5 +437,3 @@ updateViewSize(imageInfo) {

onFinalImageSet(id, imageInfo, animatable) {
if (Trace.isEnabled()) {
CLog(CLogTypes.info, 'onFinalImageSet', id, imageInfo, animatable);
}
CLog(CLogTypes.info, 'onFinalImageSet', id, imageInfo, animatable);
const nativeView = that && that.get();

@@ -418,5 +457,3 @@ if (nativeView) {

onFailure(id, throwable) {
if (Trace.isEnabled()) {
CLog(CLogTypes.info, 'onFailure', id, throwable);
}
CLog(CLogTypes.info, 'onFailure', id, throwable);
const nativeView = that && that.get();

@@ -438,5 +475,3 @@ if (nativeView) {

onIntermediateImageFailed(id, throwable) {
if (Trace.isEnabled()) {
CLog(CLogTypes.info, 'onIntermediateImageFailed', id, throwable);
}
CLog(CLogTypes.info, 'onIntermediateImageFailed', id, throwable);
const nativeView = that && that.get();

@@ -457,5 +492,3 @@ if (nativeView) {

onIntermediateImageSet(id, imageInfo) {
if (Trace.isEnabled()) {
CLog(CLogTypes.info, 'onIntermediateImageSet', id, imageInfo);
}
CLog(CLogTypes.info, 'onIntermediateImageSet', id, imageInfo);
const nativeView = that && that.get();

@@ -477,5 +510,3 @@ if (nativeView) {

onRelease(id) {
if (Trace.isEnabled()) {
CLog(CLogTypes.info, 'onRelease', id);
}
CLog(CLogTypes.info, 'onRelease', id);
const nativeView = that && that.get();

@@ -494,5 +525,3 @@ if (nativeView) {

onSubmit(id, callerContext) {
if (Trace.isEnabled()) {
CLog(CLogTypes.info, 'onSubmit', id, callerContext);
}
CLog(CLogTypes.info, 'onSubmit', id, callerContext);
const nativeView = that && that.get();

@@ -515,3 +544,3 @@ if (nativeView) {

builder.setOldController(this.nativeViewProtected.getController());
if (Trace.isEnabled()) {
if (debug) {
builder.setPerfDataListener(new com.facebook.drawee.backends.pipeline.info.ImagePerfDataListener({

@@ -518,0 +547,0 @@ onImageLoadStatusUpdated(param0, param1) {

@@ -46,5 +46,4 @@ export * from './image-common';

private initImage;
placeholderImage: UIImage;
startAnimating(): void;
stopAnimating(): void;
}
export * from './image-common';
import { ImageAsset, ImageSource, Screen, Trace, knownFolders, path } from '@nativescript/core';
import { ImageAsset, ImageSource, Screen, knownFolders, path } from '@nativescript/core';
import { isString } from '@nativescript/core/utils/types';

@@ -156,5 +156,3 @@ import { RESOURCE_PREFIX, isFileOrResourcePath, isFontIconURI, layout } from '@nativescript/core/utils/utils';

}
export function initialize(config) {
SDImageLoadersManager.sharedManager.loaders = NSArray.arrayWithArray([SDWebImageDownloader.sharedDownloader, SDImagePhotosLoader.sharedLoader]);
}
export function initialize(config) { }
export function shutDown() { }

@@ -166,15 +164,15 @@ export class ImagePipeline {

isInDiskCache(uri) {
return this._ios.diskImageDataExistsWithKey(getUri(uri).absoluteString);
return this._ios.diskImageDataExistsWithKey(uri);
}
isInBitmapMemoryCache(uri) {
return this._ios.imageFromMemoryCacheForKey(getUri(uri).absoluteString) !== null;
return this._ios.imageFromMemoryCacheForKey(uri) !== null;
}
evictFromMemoryCache(uri) {
this._ios.removeImageFromMemoryForKey(getUri(uri).absoluteString);
this._ios.removeImageFromMemoryForKey(uri);
}
evictFromDiskCache(uri) {
this._ios.removeImageFromDiskForKey(getUri(uri).absoluteString);
this._ios.removeImageFromDiskForKey(uri);
}
evictFromCache(uri) {
this._ios.removeImageForKeyWithCompletion(getUri(uri).absoluteString, null);
this._ios.removeImageForKeyWithCompletion(uri, null);
}

@@ -221,6 +219,5 @@ clearCaches() {

function getUri(src) {
console.log('getUri', src);
let uri = src;
if (src instanceof ImageAsset) {
uri = NSURL.sd_URLWithAsset(src.ios);
uri = src.ios;
}

@@ -243,5 +240,5 @@ if (uri.indexOf(RESOURCE_PREFIX) === 0) {

else if (uri.indexOf('~/') === 0) {
return NSURL.alloc().initFileURLWithPath(`${path.join(knownFolders.currentApp().path, uri.replace('~/', ''))}`);
uri = NSURL.alloc().initFileURLWithPath(`${path.join(knownFolders.currentApp().path, uri.replace('~/', ''))}`);
}
return NSURL.URLWithString(uri);
return uri;
}

@@ -314,5 +311,3 @@ export class Img extends ImageBase {

this._imageSourceAffectsLayout = !finiteWidth || !finiteHeight;
if (Trace.isEnabled()) {
CLog(CLogTypes.info, 'onMeasure', this.src, widthMeasureSpec, heightMeasureSpec, width, height, this.aspectRatio, image && image.imageOrientation);
}
CLog(CLogTypes.info, 'onMeasure', this.src, widthMeasureSpec, heightMeasureSpec, width, height, this.aspectRatio, image && image.imageOrientation);
if (image || this.aspectRatio > 0) {

@@ -329,5 +324,3 @@ const nativeWidth = image ? layout.toDevicePixels(image.size.width) : 0;

}
if (Trace.isEnabled()) {
CLog(CLogTypes.info, 'onMeasure scale', this.src, this.aspectRatio, finiteWidth, finiteHeight, width, height, nativeWidth, nativeHeight, widthMeasureSpec, heightMeasureSpec);
}
CLog(CLogTypes.info, 'onMeasure scale', this.src, this.aspectRatio, finiteWidth, finiteHeight, width, height, nativeWidth, nativeHeight, widthMeasureSpec, heightMeasureSpec);
}

@@ -340,3 +333,3 @@ super.onMeasure(widthMeasureSpec, heightMeasureSpec);

if (!(src instanceof ImageSource)) {
const uri = getUri(src).absoluteString;
const uri = getUri(src);
const isInCache = imagePipeLine.isInBitmapMemoryCache(uri);

@@ -392,9 +385,8 @@ if (isInCache) {

}
const uri = getUri(src);
if (this.noCache) {
const key = uri.absoluteString;
const uri = getUri(src);
const imagePipeLine = getImagePipeline();
const isInCache = imagePipeLine.isInBitmapMemoryCache(key);
const isInCache = imagePipeLine.isInBitmapMemoryCache(uri);
if (isInCache) {
imagePipeLine.evictFromCache(key);
imagePipeLine.evictFromCache(uri);
}

@@ -443,3 +435,3 @@ }

}
this.nativeViewProtected.sd_setImageWithURLPlaceholderImageOptionsContextProgressCompleted(getUri(src), this.placeholderImage, options, context, this.onLoadProgress, this.handleImageLoaded);
this.nativeViewProtected.sd_setImageWithURLPlaceholderImageOptionsContextProgressCompleted(getUri(src), this.getUIImage(this.placeholderImageUri), options, context, this.onLoadProgress, this.handleImageLoaded);
}

@@ -455,3 +447,2 @@ else {

[ImageBase.placeholderImageUriProperty.setNative]() {
this.placeholderImage = this.getUIImage(this.placeholderImageUri);
this.initImage();

@@ -458,0 +449,0 @@ }

{
"name": "@nativescript-community/ui-image",
"version": "4.0.14",
"description": "Nativescript Image plugin using cache.",
"version": "4.0.15",
"description": "Advanced and efficient image display plugin which uses Fresco (Android) and SDWebImage (iOS) to implement caching, placeholders, image effects, and much more.",
"main": "./image",

@@ -17,4 +17,10 @@ "sideEffects": false,

"JavaScript",
"Fresco",
"SDWebImage",
"cache",
"caching",
"Android",
"iOS"
"iOS",
"Angular",
"Vue"
],

@@ -28,6 +34,9 @@ "author": {

},
"repository": {
"type": "git",
"url": "https://github.com/nativescript-community/ui-image"
},
"license": "Apache-2.0",
"homepage": "https://github.com/nativescript-community/ui-image",
"readmeFilename": "README.md",
"gitHead": "aba35883b4b7856f21e39b0581389b6eb7d8a274"
"gitHead": "93c5ce5b569b6eaa5a3dce62e7239f0a76776843"
}
/// <reference path="./typings/android.d.ts" />
/// <reference path="./typings/ios.d.ts" />
/// <reference path="./typings/objc!SDWebImagePhotosPlugin.d.ts" />

@@ -7,6 +7,2 @@ /// <reference path="./fresco.d.ts" />

export namespace image {
class DraweeView extends facebook.drawee.view.SimpleDraweeView {
imageWidth: number;
imageHeight: number;
}
class ScalingBlurPostprocessor extends facebook.imagepipeline.request.BasePostprocessor {

@@ -13,0 +9,0 @@ public constructor(iterations: number, blurRadius: number, scaleRatio: number);

(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@nativescript/angular'), require('@nativescript-community/ui-image')) :
typeof define === 'function' && define.amd ? define('@nativescript-community/ui-image-angular', ['exports', '@angular/core', '@nativescript/angular', '@nativescript-community/ui-image'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global['nativescript-community'] = global['nativescript-community'] || {}, global['nativescript-community']['ui-image-angular'] = {}), global.ng.core, global['ns-angular'], global['ns-image']));
}(this, (function (exports, i0, angular, uiImage) { 'use strict';
var ImgDirective = /** @class */ (function () {
function ImgDirective() {
}
return ImgDirective;
}());
ImgDirective.ɵfac = function ImgDirective_Factory(t) { return new (t || ImgDirective)(); };
ImgDirective.ɵdir = i0.ɵɵdefineDirective({ type: ImgDirective, selectors: [["NSImg"]] });
(function () {
i0.ɵsetClassMetadata(ImgDirective, [{
type: i0.Directive,
args: [{
selector: 'NSImg'
}]
}], function () { return []; }, null);
})();
var NSIMG_DIRECTIVES = [ImgDirective];
var TNSImageModule = /** @class */ (function () {
function TNSImageModule() {
}
return TNSImageModule;
}());
TNSImageModule.ɵmod = i0.ɵɵdefineNgModule({ type: TNSImageModule });
TNSImageModule.ɵinj = i0.ɵɵdefineInjector({ factory: function TNSImageModule_Factory(t) { return new (t || TNSImageModule)(); } });
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(TNSImageModule, { declarations: [ImgDirective], exports: [ImgDirective] }); })();
(function () {
i0.ɵsetClassMetadata(TNSImageModule, [{
type: i0.NgModule,
args: [{
declarations: [NSIMG_DIRECTIVES],
exports: [NSIMG_DIRECTIVES],
}]
}], null, null);
})();
angular.registerElement('NSImg', function () { return uiImage.Img; });
exports.ImgDirective = ImgDirective;
exports.TNSImageModule = TNSImageModule;
Object.defineProperty(exports, '__esModule', { value: true });
})));
//# sourceMappingURL=nativescript-community-ui-image-angular.umd.js.map
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@nativescript/angular"),require("@nativescript-community/ui-image")):"function"==typeof define&&define.amd?define("@nativescript-community/ui-image-angular",["exports","@angular/core","@nativescript/angular","@nativescript-community/ui-image"],t):t(((e="undefined"!=typeof globalThis?globalThis:e||self)["nativescript-community"]=e["nativescript-community"]||{},e["nativescript-community"]["ui-image-angular"]={}),e.ng.core,e["ns-angular"],e["ns-image"])}(this,(function(e,t,n,i){"use strict";var r=function(){};r.ɵfac=function(e){return new(e||r)},r.ɵdir=t.ɵɵdefineDirective({type:r,selectors:[["NSImg"]]}),t.ɵsetClassMetadata(r,[{type:t.Directive,args:[{selector:"NSImg"}]}],(function(){return[]}),null);var a=[r],o=function(){};o.ɵmod=t.ɵɵdefineNgModule({type:o}),o.ɵinj=t.ɵɵdefineInjector({factory:function(e){return new(e||o)}}),("undefined"==typeof ngJitMode||ngJitMode)&&t.ɵɵsetNgModuleScope(o,{declarations:[r],exports:[r]}),t.ɵsetClassMetadata(o,[{type:t.NgModule,args:[{declarations:[a],exports:[a]}]}],null,null),n.registerElement("NSImg",(function(){return i.Img})),e.ImgDirective=r,e.TNSImageModule=o,Object.defineProperty(e,"__esModule",{value:!0})}));
//# sourceMappingURL=nativescript-community-ui-image-angular.umd.min.js.map
import * as i0 from "@angular/core";
export declare class ImgDirective {
constructor();
static ɵfac: i0.ɵɵFactoryDef<ImgDirective, never>;
static ɵdir: i0.ɵɵDirectiveDefWithMeta<ImgDirective, "NSImg", never, {}, {}, never>;
}
export declare const NSIMG_DIRECTIVES: (typeof ImgDirective)[];
import { Directive } from '@angular/core';
import * as i0 from "@angular/core";
export class ImgDirective {
constructor() { }
}
ImgDirective.ɵfac = function ImgDirective_Factory(t) { return new (t || ImgDirective)(); };
ImgDirective.ɵdir = i0.ɵɵdefineDirective({ type: ImgDirective, selectors: [["NSImg"]] });
(function () { i0.ɵsetClassMetadata(ImgDirective, [{
type: Directive,
args: [{
selector: 'NSImg'
}]
}], function () { return []; }, null); })();
export const NSIMG_DIRECTIVES = [ImgDirective];
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGlyZWN0aXZlcy5qcyIsInNvdXJjZVJvb3QiOiIuLi9zcmMvIiwic291cmNlcyI6WyJkaXJlY3RpdmVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBSzFDLE1BQU0sT0FBTyxZQUFZO0lBQ3JCLGdCQUFlLENBQUM7O3dFQURQLFlBQVk7aURBQVosWUFBWTtvQ0FBWixZQUFZO2NBSHhCLFNBQVM7ZUFBQztnQkFDUCxRQUFRLEVBQUUsT0FBTzthQUNwQjs7QUFJRCxNQUFNLENBQUMsTUFBTSxnQkFBZ0IsR0FBRyxDQUFDLFlBQVksQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnTlNJbWcnXG59KVxuZXhwb3J0IGNsYXNzIEltZ0RpcmVjdGl2ZSB7XG4gICAgY29uc3RydWN0b3IoKSB7fVxufVxuZXhwb3J0IGNvbnN0IE5TSU1HX0RJUkVDVElWRVMgPSBbSW1nRGlyZWN0aXZlXTtcbiJdfQ==
export * from './module';
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiLi4vc3JjLyIsInNvdXJjZXMiOlsiaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsY0FBYyxVQUFVLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJcbmV4cG9ydCAqIGZyb20gJy4vbW9kdWxlJztcbiJdfQ==
import { NgModule } from '@angular/core';
import { registerElement } from '@nativescript/angular';
import { ImgDirective, NSIMG_DIRECTIVES } from './directives';
import { Img } from '@nativescript-community/ui-image';
import * as i0 from "@angular/core";
import * as i1 from "./directives";
export { ImgDirective };
export class TNSImageModule {
}
TNSImageModule.ɵmod = i0.ɵɵdefineNgModule({ type: TNSImageModule });
TNSImageModule.ɵinj = i0.ɵɵdefineInjector({ factory: function TNSImageModule_Factory(t) { return new (t || TNSImageModule)(); } });
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(TNSImageModule, { declarations: [i1.ImgDirective], exports: [i1.ImgDirective] }); })();
(function () { i0.ɵsetClassMetadata(TNSImageModule, [{
type: NgModule,
args: [{
declarations: [NSIMG_DIRECTIVES],
exports: [NSIMG_DIRECTIVES],
}]
}], null, null); })();
registerElement('NSImg', () => Img);
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kdWxlLmpzIiwic291cmNlUm9vdCI6Ii4uL3NyYy8iLCJzb3VyY2VzIjpbIm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUV4RCxPQUFPLEVBQUUsWUFBWSxFQUFFLGdCQUFnQixFQUFFLE1BQU0sY0FBYyxDQUFDO0FBQzlELE9BQU8sRUFBRSxHQUFHLEVBQUUsTUFBTSxrQ0FBa0MsQ0FBQzs7O0FBQ3ZELE9BQU8sRUFBRSxZQUFZLEVBQUUsQ0FBQztBQUt4QixNQUFNLE9BQU8sY0FBYzs7a0RBQWQsY0FBYzsyR0FBZCxjQUFjO3dGQUFkLGNBQWM7b0NBQWQsY0FBYztjQUoxQixRQUFRO2VBQUM7Z0JBQ04sWUFBWSxFQUFFLENBQUMsZ0JBQWdCLENBQUM7Z0JBQ2hDLE9BQU8sRUFBRSxDQUFDLGdCQUFnQixDQUFDO2FBQzlCOztBQUdELGVBQWUsQ0FBQyxPQUFPLEVBQUUsR0FBRyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgcmVnaXN0ZXJFbGVtZW50IH0gZnJvbSAnQG5hdGl2ZXNjcmlwdC9hbmd1bGFyJztcblxuaW1wb3J0IHsgSW1nRGlyZWN0aXZlLCBOU0lNR19ESVJFQ1RJVkVTIH0gZnJvbSAnLi9kaXJlY3RpdmVzJztcbmltcG9ydCB7IEltZyB9IGZyb20gJ0BuYXRpdmVzY3JpcHQtY29tbXVuaXR5L3VpLWltYWdlJztcbmV4cG9ydCB7IEltZ0RpcmVjdGl2ZSB9O1xuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtOU0lNR19ESVJFQ1RJVkVTXSxcbiAgICBleHBvcnRzOiBbTlNJTUdfRElSRUNUSVZFU10sXG59KVxuZXhwb3J0IGNsYXNzIFROU0ltYWdlTW9kdWxlIHt9XG5cbnJlZ2lzdGVyRWxlbWVudCgnTlNJbWcnLCAoKSA9PiBJbWcpO1xuIl19
export * from './index';
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmF0aXZlc2NyaXB0LWNvbW11bml0eS11aS1pbWFnZS1hbmd1bGFyLmpzIiwic291cmNlUm9vdCI6Ii4uL3NyYy8iLCJzb3VyY2VzIjpbIm5hdGl2ZXNjcmlwdC1jb21tdW5pdHktdWktaW1hZ2UtYW5ndWxhci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFJQSxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0=
import { ɵɵdefineDirective, ɵsetClassMetadata, Directive, ɵɵdefineNgModule, ɵɵdefineInjector, ɵɵsetNgModuleScope, NgModule } from '@angular/core';
import { registerElement } from '@nativescript/angular';
import { Img } from '@nativescript-community/ui-image';
class ImgDirective {
constructor() { }
}
ImgDirective.ɵfac = function ImgDirective_Factory(t) { return new (t || ImgDirective)(); };
ImgDirective.ɵdir = ɵɵdefineDirective({ type: ImgDirective, selectors: [["NSImg"]] });
(function () { ɵsetClassMetadata(ImgDirective, [{
type: Directive,
args: [{
selector: 'NSImg'
}]
}], function () { return []; }, null); })();
const NSIMG_DIRECTIVES = [ImgDirective];
class TNSImageModule {
}
TNSImageModule.ɵmod = ɵɵdefineNgModule({ type: TNSImageModule });
TNSImageModule.ɵinj = ɵɵdefineInjector({ factory: function TNSImageModule_Factory(t) { return new (t || TNSImageModule)(); } });
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && ɵɵsetNgModuleScope(TNSImageModule, { declarations: [ImgDirective], exports: [ImgDirective] }); })();
(function () { ɵsetClassMetadata(TNSImageModule, [{
type: NgModule,
args: [{
declarations: [NSIMG_DIRECTIVES],
exports: [NSIMG_DIRECTIVES],
}]
}], null, null); })();
registerElement('NSImg', () => Img);
export { ImgDirective, TNSImageModule };
//# sourceMappingURL=nativescript-community-ui-image-angular.js.map
export * from './module';
import { ImgDirective } from './directives';
import * as i0 from "@angular/core";
import * as i1 from "./directives";
export { ImgDirective };
export declare class TNSImageModule {
static ɵmod: i0.ɵɵNgModuleDefWithMeta<TNSImageModule, [typeof i1.ImgDirective], never, [typeof i1.ImgDirective]>;
static ɵinj: i0.ɵɵInjectorDef<TNSImageModule>;
}
/// <amd-module name="@nativescript-community/ui-image-angular" />
export * from './index';
{
"name": "@nativescript-community/ui-image-angular",
"main": "bundles/nativescript-community-ui-image-angular.umd.js",
"module": "fesm2015/nativescript-community-ui-image-angular.js",
"es2015": "fesm2015/nativescript-community-ui-image-angular.js",
"esm2015": "esm2015/nativescript-community-ui-image-angular.js",
"fesm2015": "fesm2015/nativescript-community-ui-image-angular.js",
"typings": "nativescript-community-ui-image-angular.d.ts",
"sideEffects": false,
"dependencies": {
"tslib": "^2.0.0"
},
"scripts": {
"prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy. This is not allowed.\\nPlease delete and rebuild the package, without compiling with Ivy, before attempting to publish.\\n')\" && exit 1"
}
}
[{"__symbolic":"module","version":4,"metadata":{"CLogTypes":{"info":0,"warning":1,"error":2},"debug":false,"setDebug":{"__symbolic":"function"},"CLog":{"__symbolic":"error","message":"Lambda not supported","line":17,"character":20},"Transition":{"__symbolic":"interface"},"ScaleType":{"None":"none","Fill":"fill","AspectFill":"aspectFill","AspectFit":"aspectFit","Center":"center","CenterCrop":"centerCrop","CenterInside":"centerInside","FitCenter":"fitCenter","FitEnd":"fitEnd","FitStart":"fitStart","FitXY":"fitXY","FocusCrop":"focusCrop"},"AnimatedImage":{"__symbolic":"interface"},"ImageInfo":{"__symbolic":"interface"},"ImageError":{"__symbolic":"interface"},"ImagePipelineConfigSetting":{"__symbolic":"interface"},"EventData":{"__symbolic":"class"},"Stretch":{"__symbolic":"interface"},"ImageBase":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"View","line":91,"character":31},"members":{"handleImageProgress":[{"__symbolic":"method"}]},"statics":{"finalImageSetEvent":"finalImageSet","failureEvent":"failure","intermediateImageFailedEvent":"intermediateImageFailed","intermediateImageSetEvent":"intermediateImageSet","releaseEvent":"release","submitEvent":"submit","srcProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":131,"character":36},"arguments":[{"name":"src"}]},"lowerResSrcProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":132,"character":44},"arguments":[{"name":"lowerResSrc"}]},"placeholderImageUriProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":133,"character":52},"arguments":[{"name":"placeholderImageUri"}]},"failureImageUriProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":134,"character":48},"arguments":[{"name":"failureImageUri"}]},"stretchProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":135,"character":40},"arguments":[{"name":"stretch"}]},"backgroundUriProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":136,"character":46},"arguments":[{"name":"backgroundUri"}]},"progressiveRenderingEnabledProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":137,"character":60},"arguments":[{"name":"progressiveRenderingEnabled","valueConverter":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"booleanConverter","line":137,"character":144}}]},"localThumbnailPreviewsEnabledProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":138,"character":62},"arguments":[{"name":"localThumbnailPreviewsEnabled","valueConverter":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"booleanConverter","line":138,"character":148}}]},"showProgressBarProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":139,"character":48},"arguments":[{"name":"showProgressBar","valueConverter":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"booleanConverter","line":139,"character":120}}]},"progressBarColorProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":140,"character":49},"arguments":[{"name":"progressBarColor","defaultValue":{"__symbolic":"reference","name":"undefined"}}]},"roundAsCircleProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":141,"character":46},"arguments":[{"name":"roundAsCircle","valueConverter":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"booleanConverter","line":141,"character":116},"affectsLayout":{"__symbolic":"reference","module":"@nativescript/core/platform","name":"isAndroid","line":141,"character":149}}]},"roundTopLeftProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":142,"character":45},"arguments":[{"name":"roundTopLeft","defaultValue":{"__symbolic":"reference","name":"undefined"},"valueConverter":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"booleanConverter","line":142,"character":139},"affectsLayout":{"__symbolic":"reference","module":"@nativescript/core/platform","name":"isAndroid","line":142,"character":172}}]},"roundTopRightProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":143,"character":46},"arguments":[{"name":"roundTopRight","valueConverter":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"booleanConverter","line":143,"character":116},"affectsLayout":{"__symbolic":"reference","module":"@nativescript/core/platform","name":"isAndroid","line":143,"character":149}}]},"roundBottomLeftProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":144,"character":48},"arguments":[{"name":"roundBottomLeft","valueConverter":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"booleanConverter","line":144,"character":120},"affectsLayout":{"__symbolic":"reference","module":"@nativescript/core/platform","name":"isAndroid","line":144,"character":153}}]},"roundBottomRightProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":145,"character":49},"arguments":[{"name":"roundBottomRight","valueConverter":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"booleanConverter","line":145,"character":122},"affectsLayout":{"__symbolic":"reference","module":"@nativescript/core/platform","name":"isAndroid","line":145,"character":155}}]},"roundedCornerRadiusProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":146,"character":52},"arguments":[{"__symbolic":"error","message":"Lambda not supported","line":146,"character":127}]},"blurRadiusProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":147,"character":43},"arguments":[{"__symbolic":"error","message":"Lambda not supported","line":147,"character":109}]},"blurDownSamplingProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":148,"character":49},"arguments":[{"__symbolic":"error","message":"Lambda not supported","line":148,"character":121}]},"autoPlayAnimationsProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":149,"character":51},"arguments":[{"name":"autoPlayAnimations","valueConverter":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"booleanConverter","line":149,"character":126}}]},"tapToRetryEnabledProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":150,"character":50},"arguments":[{"name":"tapToRetryEnabled","valueConverter":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"booleanConverter","line":150,"character":124}}]},"aspectRatioProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":151,"character":44},"arguments":[{"__symbolic":"error","message":"Lambda not supported","line":151,"character":132}]},"decodeWidthProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":152,"character":44},"arguments":[{"__symbolic":"error","message":"Lambda not supported","line":152,"character":111}]},"decodeHeightProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":153,"character":45},"arguments":[{"__symbolic":"error","message":"Lambda not supported","line":153,"character":113}]},"tintColorProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":154,"character":42},"arguments":[{"name":"tintColor"}]},"alwaysFadeProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":155,"character":43},"arguments":[{"name":"alwaysFade","valueConverter":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"booleanConverter","line":155,"character":110},"defaultValue":false}]},"fadeDurationProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":157,"character":45},"arguments":[{"__symbolic":"error","message":"Lambda not supported","line":157,"character":113}]},"noCacheProperty":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"Property","line":158,"character":40},"arguments":[{"name":"noCache","defaultValue":false,"valueConverter":{"__symbolic":"reference","module":"@nativescript/core/ui/core/view","name":"booleanConverter","line":158,"character":125}}]}}}}}]
[{"__symbolic":"module","version":4,"metadata":{"initialize":{"__symbolic":"function"},"getImagePipeline":{"__symbolic":"function"},"shutDown":{"__symbolic":"function"},"ImagePipeline":{"__symbolic":"class","members":{"toUri":[{"__symbolic":"method"}],"isInDiskCache":[{"__symbolic":"method"}],"isInBitmapMemoryCache":[{"__symbolic":"method"}],"evictFromMemoryCache":[{"__symbolic":"method"}],"evictFromDiskCache":[{"__symbolic":"method"}],"evictFromCache":[{"__symbolic":"method"}],"clearCaches":[{"__symbolic":"method"}],"clearMemoryCaches":[{"__symbolic":"method"}],"clearDiskCaches":[{"__symbolic":"method"}],"prefetchToDiskCache":[{"__symbolic":"method"}],"prefetchToMemoryCache":[{"__symbolic":"method"}],"prefetchToCache":[{"__symbolic":"method"}],"fetchImage":[{"__symbolic":"method"}]}},"ImageError":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"select","expression":{"__symbolic":"error","message":"Expression form not supported","line":223,"character":27},"member":"Throwable"}]}],"getMessage":[{"__symbolic":"method"}],"getErrorType":[{"__symbolic":"method"}],"toString":[{"__symbolic":"method"}]}},"QualityInfo":{"__symbolic":"interface"},"ImageInfo":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[null]}],"getHeight":[{"__symbolic":"method"}],"getWidth":[{"__symbolic":"method"}],"getQualityInfo":[{"__symbolic":"method"}]}},"FinalEventData":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"./image-common","name":"EventData","line":270,"character":36}},"IntermediateEventData":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"./image-common","name":"EventData","line":294,"character":43}},"FailureEventData":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"./image-common","name":"EventData","line":306,"character":38}},"needUpdateHierarchy":{"__symbolic":"error","message":"Lambda not supported","line":318,"character":35},"needRequestImage":{"__symbolic":"error","message":"Lambda not supported","line":328,"character":32},"Img":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"./image-common","name":"ImageBase","line":339,"character":25},"members":{"onResumeNativeUpdates":[{"__symbolic":"method"}],"createNativeView":[{"__symbolic":"method"}],"onImageSet":[{"__symbolic":"method"}],"disposeNativeView":[{"__symbolic":"method"}],"updateImageUri":[{"__symbolic":"method"}],"initImage":[{"__symbolic":"method"}],"updateHierarchy":[{"__symbolic":"method"}],"getDrawable":[{"__symbolic":"method"}],"getDrawableFromLocalFile":[{"__symbolic":"method"}],"getDrawableFromResource":[{"__symbolic":"method"}],"startAnimating":[{"__symbolic":"method"}],"stopAnimating":[{"__symbolic":"method"}]}}},"exports":[{"from":"./image-common"}]}]
[{"__symbolic":"module","version":4,"metadata":{"ImageInfo":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"number"},{"__symbolic":"reference","name":"number"}]}],"getHeight":[{"__symbolic":"method"}],"getWidth":[{"__symbolic":"method"}]}},"FinalEventData":{"__symbolic":"interface"},"initialize":{"__symbolic":"function"},"shutDown":{"__symbolic":"function"},"ImagePipeline":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor"}],"isInDiskCache":[{"__symbolic":"method"}],"isInBitmapMemoryCache":[{"__symbolic":"method"}],"evictFromMemoryCache":[{"__symbolic":"method"}],"evictFromDiskCache":[{"__symbolic":"method"}],"evictFromCache":[{"__symbolic":"method"}],"clearCaches":[{"__symbolic":"method"}],"clearMemoryCaches":[{"__symbolic":"method"}],"clearDiskCaches":[{"__symbolic":"method"}],"prefetchToDiskCache":[{"__symbolic":"method"}],"prefetchToMemoryCache":[{"__symbolic":"method"}],"prefetchToCacheType":[{"__symbolic":"method"}]}},"getImagePipeline":{"__symbolic":"function"},"Img":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"./image-common","name":"ImageBase","line":260,"character":25},"members":{"createNativeView":[{"__symbolic":"method"}],"_setNativeClipToBounds":[{"__symbolic":"method"}],"onMeasure":[{"__symbolic":"method"}],"computeScaleFactor":[{"__symbolic":"method"}],"updateImageUri":[{"__symbolic":"method"}],"_setNativeImage":[{"__symbolic":"method"}],"getUIImage":[{"__symbolic":"method"}],"initImage":[{"__symbolic":"method"}],"startAnimating":[{"__symbolic":"method"}],"stopAnimating":[{"__symbolic":"method"}]}}},"exports":[{"from":"./image-common"}]}]

Sorry, the diff of this file is not supported yet

{"moduleName":null,"summaries":[],"symbols":[]}
{"moduleName":null,"summaries":[],"symbols":[]}
{"moduleName":null,"summaries":[],"symbols":[]}
{"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]},{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]}],"animatedImageDurationAtIndex":[{"__symbolic":"method"}],"animatedImageFrameAtIndex":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"initWithAnimatedCoderScale":[{"__symbolic":"method"}],"initWithDataScaleOptions":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"preloadAllFrames":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"unloadAllFrames":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":1,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":2,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":3,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":4,"members":[]},"metadata":{"__symbolic":"class"}},{"symbol":{"__symbol":5,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]}],"cachePathForKey":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"containsDataForKey":[{"__symbolic":"method"}],"dataForKey":[{"__symbolic":"method"}],"initWithCachePathConfig":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"moveCacheDirectoryFromPathToPath":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"removeAllData":[{"__symbolic":"method"}],"removeDataForKey":[{"__symbolic":"method"}],"removeExpiredData":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"setDataForKey":[{"__symbolic":"method"}],"totalCount":[{"__symbolic":"method"}],"totalSize":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":6,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":7,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]},{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]}],"animatedImageDurationAtIndex":[{"__symbolic":"method"}],"animatedImageFrameAtIndex":[{"__symbolic":"method"}],"canDecodeFromData":[{"__symbolic":"method"}],"canEncodeToFormat":[{"__symbolic":"method"}],"canIncrementalDecodeFromData":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"decodedImageWithDataOptions":[{"__symbolic":"method"}],"encodedDataWithImageFormatOptions":[{"__symbolic":"method"}],"incrementalDecodedImageWithOptions":[{"__symbolic":"method"}],"initIncrementalWithOptions":[{"__symbolic":"method"}],"initWithAnimatedImageDataOptions":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"updateIncrementalDataFinished":[{"__symbolic":"method"}]},"statics":{"sharedCoder":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":8,"members":[]},"metadata":{"__symbolic":"class","members":{"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"transformedImageWithImageForKey":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":9,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]},{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]},{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]}],"cachePathForKey":[{"__symbolic":"method"}],"calculateSizeWithCompletionBlock":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"clearDiskOnCompletion":[{"__symbolic":"method"}],"clearMemory":[{"__symbolic":"method"}],"clearWithCacheTypeCompletion":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"containsImageForKeyCacheTypeCompletion":[{"__symbolic":"method"}],"deleteOldFilesWithCompletionBlock":[{"__symbolic":"method"}],"diskImageDataExistsWithKey":[{"__symbolic":"method"}],"diskImageDataForKey":[{"__symbolic":"method"}],"diskImageExistsWithKeyCompletion":[{"__symbolic":"method"}],"getDiskCount":[{"__symbolic":"method"}],"getSize":[{"__symbolic":"method"}],"imageFromCacheForKey":[{"__symbolic":"method"}],"imageFromDiskCacheForKey":[{"__symbolic":"method"}],"imageFromMemoryCacheForKey":[{"__symbolic":"method"}],"initWithNamespace":[{"__symbolic":"method"}],"initWithNamespaceDiskCacheDirectory":[{"__symbolic":"method"}],"initWithNamespaceDiskCacheDirectoryConfig":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"queryCacheOperationForKeyDone":[{"__symbolic":"method"}],"queryCacheOperationForKeyOptionsContextDone":[{"__symbolic":"method"}],"queryCacheOperationForKeyOptionsDone":[{"__symbolic":"method"}],"queryImageForKeyOptionsContextCompletion":[{"__symbolic":"method"}],"removeImageForKeyCacheTypeCompletion":[{"__symbolic":"method"}],"removeImageForKeyFromDiskWithCompletion":[{"__symbolic":"method"}],"removeImageForKeyWithCompletion":[{"__symbolic":"method"}],"removeImageFromDiskForKey":[{"__symbolic":"method"}],"removeImageFromMemoryForKey":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"storeImageDataToDiskForKey":[{"__symbolic":"method"}],"storeImageForKeyCompletion":[{"__symbolic":"method"}],"storeImageForKeyToDiskCompletion":[{"__symbolic":"method"}],"storeImageImageDataForKeyCacheTypeCompletion":[{"__symbolic":"method"}],"storeImageImageDataForKeyToDiskCompletion":[{"__symbolic":"method"}],"storeImageToMemoryForKey":[{"__symbolic":"method"}]},"statics":{"sharedImageCache":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":10,"members":[]},"metadata":{"__symbolic":"class","members":{"copyWithZone":[{"__symbolic":"method"}]},"statics":{"defaultCacheConfig":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":11,"members":[]},"metadata":{"AccessDate":0,"ModificationDate":1}},{"symbol":{"__symbol":12,"members":[]},"metadata":{"__symbolic":"function"}},{"symbol":{"__symbol":13,"members":[]},"metadata":{"QueryMemoryData":1,"QueryMemoryDataSync":2,"QueryDiskDataSync":4,"ScaleDownLargeImages":8,"AvoidDecodeImage":16,"DecodeFirstFrameOnly":32,"PreloadAllFrames":64}},{"symbol":{"__symbol":14,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":15,"members":[]},"metadata":{"None":0,"Disk":1,"Memory":2,"All":3}},{"symbol":{"__symbol":16,"members":[]},"metadata":{"__symbolic":"class","members":{"addCache":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"clearWithCacheTypeCompletion":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"containsImageForKeyCacheTypeCompletion":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"queryImageForKeyOptionsContextCompletion":[{"__symbolic":"method"}],"removeCache":[{"__symbolic":"method"}],"removeImageForKeyCacheTypeCompletion":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"storeImageImageDataForKeyCacheTypeCompletion":[{"__symbolic":"method"}]},"statics":{"sharedManager":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":17,"members":[]},"metadata":{"Serial":0,"Concurrent":1,"HighestOnly":2,"LowestOnly":3}},{"symbol":{"__symbol":18,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":19,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":20,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":21,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":22,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":23,"members":[]},"metadata":{"__symbolic":"class"}},{"symbol":{"__symbol":24,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":25,"members":[]},"metadata":{"__symbolic":"class","members":{"addCoder":[{"__symbolic":"method"}],"canDecodeFromData":[{"__symbolic":"method"}],"canEncodeToFormat":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"decodedImageWithDataOptions":[{"__symbolic":"method"}],"encodedDataWithImageFormatOptions":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"removeCoder":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}]},"statics":{"sharedManager":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":26,"members":[]},"metadata":{"__symbolic":"class","members":{"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"transformedImageWithImageForKey":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":27,"members":[]},"metadata":{"__symbolic":"class","members":{"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"transformedImageWithImageForKey":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":28,"members":[]},"metadata":{"__symbolic":"class","members":{"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"transformedImageWithImageForKey":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":29,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":30,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":31,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":32,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":33,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":34,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":35,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":36,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":37,"members":[]},"metadata":{"__symbolic":"class"}},{"symbol":{"__symbol":38,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]},{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]}],"animatedImageDurationAtIndex":[{"__symbolic":"method"}],"animatedImageFrameAtIndex":[{"__symbolic":"method"}],"canDecodeFromData":[{"__symbolic":"method"}],"canEncodeToFormat":[{"__symbolic":"method"}],"canIncrementalDecodeFromData":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"decodedImageWithDataOptions":[{"__symbolic":"method"}],"encodedDataWithImageFormatOptions":[{"__symbolic":"method"}],"incrementalDecodedImageWithOptions":[{"__symbolic":"method"}],"initIncrementalWithOptions":[{"__symbolic":"method"}],"initWithAnimatedImageDataOptions":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"updateIncrementalDataFinished":[{"__symbolic":"method"}]},"statics":{"sharedCoder":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":39,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]}],"canDecodeFromData":[{"__symbolic":"method"}],"canEncodeToFormat":[{"__symbolic":"method"}],"canIncrementalDecodeFromData":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"decodedImageWithDataOptions":[{"__symbolic":"method"}],"encodedDataWithImageFormatOptions":[{"__symbolic":"method"}],"incrementalDecodedImageWithOptions":[{"__symbolic":"method"}],"initIncrementalWithOptions":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"updateIncrementalDataFinished":[{"__symbolic":"method"}]},"statics":{"sharedCoder":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":40,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":41,"members":[]},"metadata":{"__symbolic":"function"}},{"symbol":{"__symbol":42,"members":[]},"metadata":{"__symbolic":"function"}},{"symbol":{"__symbol":43,"members":[]},"metadata":{"__symbolic":"class","members":{"addLoader":[{"__symbolic":"method"}],"canLoadWithURL":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"loadImageWithURLOptionsContextProgressCompleted":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"removeLoader":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}]},"statics":{"sharedManager":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":44,"members":[]},"metadata":{"__symbolic":"class","members":{"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"transformedImageWithImageForKey":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":45,"members":[]},"metadata":{"__symbolic":"class","members":{"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"transformedImageWithImageForKey":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":46,"members":[]},"metadata":{"__symbolic":"class","members":{"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"transformedImageWithImageForKey":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":47,"members":[]},"metadata":{"__symbolic":"class","members":{"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"transformedImageWithImageForKey":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":48,"members":[]},"metadata":{"__symbolic":"function"}},{"symbol":{"__symbol":49,"members":[]},"metadata":{"Fill":0,"AspectFit":1,"AspectFill":2}},{"symbol":{"__symbol":50,"members":[]},"metadata":{"__symbolic":"class","members":{"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"transformedImageWithImageForKey":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":51,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":52,"members":[]},"metadata":{"__symbolic":"class","arity":2,"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"initWithConfig":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"objectForKey":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"removeAllObjects":[{"__symbolic":"method"}],"removeObjectForKey":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"setObjectForKey":[{"__symbolic":"method"}],"setObjectForKeyCost":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":53,"members":[]},"metadata":{"__symbolic":"function"}},{"symbol":{"__symbol":54,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":55,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":56,"members":[]},"metadata":{"__symbolic":"function"}},{"symbol":{"__symbol":57,"members":[]},"metadata":{"__symbolic":"function"}},{"symbol":{"__symbol":58,"members":[]},"metadata":{"__symbolic":"function"}},{"symbol":{"__symbol":59,"members":[]},"metadata":{"__symbolic":"class","members":{"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"startAnimatingIndicator":[{"__symbolic":"method"}],"stopAnimatingIndicator":[{"__symbolic":"method"}],"updateIndicatorProgress":[{"__symbolic":"method"}]},"statics":{"grayIndicator":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"},"grayLargeIndicator":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"},"whiteIndicator":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"},"whiteLargeIndicator":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":60,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]}],"cacheKeyForURL":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"initWithBlock":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":61,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":62,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]}],"cacheDataWithImageOriginalDataImageURL":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"initWithBlock":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":63,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":64,"members":[]},"metadata":{"__symbolic":"class","members":{"cancel":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":65,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":66,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":67,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":68,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":69,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":70,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":71,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":72,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":73,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":74,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":75,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":76,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":77,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":78,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":79,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":80,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":81,"members":[]},"metadata":{"__symbolic":"class","members":{"cancel":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":82,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]}],"canLoadWithURL":[{"__symbolic":"method"}],"cancelAllDownloads":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"downloadImageWithURLOptionsContextProgressCompleted":[{"__symbolic":"method"}],"downloadImageWithURLOptionsProgressCompleted":[{"__symbolic":"method"}],"initWithConfig":[{"__symbolic":"method"}],"invalidateSessionAndCancel":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"loadImageWithURLOptionsContextProgressCompleted":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"setValueForHTTPHeaderField":[{"__symbolic":"method"}],"valueForHTTPHeaderField":[{"__symbolic":"method"}]},"statics":{"sharedDownloader":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":83,"members":[]},"metadata":{"__symbolic":"class","members":{"copyWithZone":[{"__symbolic":"method"}]},"statics":{"defaultDownloaderConfig":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":84,"members":[]},"metadata":{"FIFOExecutionOrder":0,"LIFOExecutionOrder":1}},{"symbol":{"__symbol":85,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]},{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]}],"URLSessionDataTaskDidBecomeDownloadTask":[{"__symbolic":"method"}],"URLSessionDataTaskDidBecomeStreamTask":[{"__symbolic":"method"}],"URLSessionDataTaskDidReceiveData":[{"__symbolic":"method"}],"URLSessionDataTaskDidReceiveResponseCompletionHandler":[{"__symbolic":"method"}],"URLSessionDataTaskWillCacheResponseCompletionHandler":[{"__symbolic":"method"}],"URLSessionDidBecomeInvalidWithError":[{"__symbolic":"method"}],"URLSessionDidFinishEventsForBackgroundURLSession":[{"__symbolic":"method"}],"URLSessionDidReceiveChallengeCompletionHandler":[{"__symbolic":"method"}],"URLSessionTaskDidCompleteWithError":[{"__symbolic":"method"}],"URLSessionTaskDidFinishCollectingMetrics":[{"__symbolic":"method"}],"URLSessionTaskDidReceiveChallengeCompletionHandler":[{"__symbolic":"method"}],"URLSessionTaskDidSendBodyDataTotalBytesSentTotalBytesExpectedToSend":[{"__symbolic":"method"}],"URLSessionTaskIsWaitingForConnectivity":[{"__symbolic":"method"}],"URLSessionTaskNeedNewBodyStream":[{"__symbolic":"method"}],"URLSessionTaskWillBeginDelayedRequestCompletionHandler":[{"__symbolic":"method"}],"URLSessionTaskWillPerformHTTPRedirectionNewRequestCompletionHandler":[{"__symbolic":"method"}],"addHandlersForProgressCompleted":[{"__symbolic":"method"}],"cancel":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"initWithRequestInSessionOptions":[{"__symbolic":"method"}],"initWithRequestInSessionOptionsContext":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":86,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":87,"members":[]},"metadata":{"LowPriority":1,"ProgressiveLoad":2,"UseNSURLCache":4,"IgnoreCachedResponse":8,"ContinueInBackground":16,"HandleCookies":32,"AllowInvalidSSLCertificates":64,"HighPriority":128,"ScaleDownLargeImages":256,"AvoidDecodeImage":512,"DecodeFirstFrameOnly":1024,"PreloadAllFrames":2048}},{"symbol":{"__symbol":88,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"initWithBlock":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"modifiedRequestWithRequest":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":89,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":90,"members":[]},"metadata":{"InvalidURL":1000,"BadImageData":1001,"CacheNotModified":1002,"InvalidDownloadOperation":2000,"InvalidDownloadStatusCode":2001}},{"symbol":{"__symbol":91,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":92,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":93,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":94,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]}],"cacheKeyForURL":[{"__symbolic":"method"}],"cancelAll":[{"__symbolic":"method"}],"initWithCacheLoader":[{"__symbolic":"method"}],"loadImageWithURLOptionsContextProgressCompleted":[{"__symbolic":"method"}],"loadImageWithURLOptionsProgressCompleted":[{"__symbolic":"method"}]},"statics":{"defaultImageCache":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"},"defaultImageLoader":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"},"sharedManager":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":95,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":96,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":97,"members":[]},"metadata":{"RetryFailed":1,"LowPriority":2,"ProgressiveLoad":4,"RefreshCached":8,"ContinueInBackground":16,"HandleCookies":32,"AllowInvalidSSLCertificates":64,"HighPriority":128,"DelayPlaceholder":256,"TransformAnimatedImage":512,"AvoidAutoSetImage":1024,"ScaleDownLargeImages":2048,"QueryMemoryData":4096,"QueryMemoryDataSync":8192,"QueryDiskDataSync":16384,"FromCacheOnly":32768,"FromLoaderOnly":65536,"ForceTransition":131072,"AvoidDecodeImage":262144,"DecodeFirstFrameOnly":524288,"PreloadAllFrames":1048576}},{"symbol":{"__symbol":98,"members":[]},"metadata":{"__symbolic":"class","members":{"cancel":[{"__symbolic":"method"}],"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}]}}},{"symbol":{"__symbol":99,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Expression form not supported","fileName":"src/typings/ios.ts"}]}],"cancelPrefetching":[{"__symbolic":"method"}],"initWithImageManager":[{"__symbolic":"method"}],"prefetchURLs":[{"__symbolic":"method"}],"prefetchURLsProgressCompleted":[{"__symbolic":"method"}]},"statics":{"sharedImagePrefetcher":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":100,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":101,"members":[]},"metadata":{"__symbolic":"class","members":{"class":[{"__symbolic":"method"}],"conformsToProtocol":[{"__symbolic":"method"}],"isEqual":[{"__symbolic":"method"}],"isKindOfClass":[{"__symbolic":"method"}],"isMemberOfClass":[{"__symbolic":"method"}],"performSelector":[{"__symbolic":"method"}],"performSelectorWithObject":[{"__symbolic":"method"}],"performSelectorWithObjectWithObject":[{"__symbolic":"method"}],"respondsToSelector":[{"__symbolic":"method"}],"retainCount":[{"__symbolic":"method"}],"self":[{"__symbolic":"method"}],"startAnimatingIndicator":[{"__symbolic":"method"}],"stopAnimatingIndicator":[{"__symbolic":"method"}],"updateIndicatorProgress":[{"__symbolic":"method"}]},"statics":{"barIndicator":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"},"defaultIndicator":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":102,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":103,"members":[]},"metadata":{"__symbolic":"class","statics":{"curlDownTransition":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"},"curlUpTransition":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"},"fadeTransition":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"},"flipFromBottomTransition":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"},"flipFromLeftTransition":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"},"flipFromRightTransition":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"},"flipFromTopTransition":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}}}},{"symbol":{"__symbol":104,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":105,"members":[]},"metadata":{"__symbolic":"error","message":"Variable not initialized","fileName":"src/typings/ios.ts"}},{"symbol":{"__symbol":106,"members":[]},"metadata":{"__symbolic":"interface"}}],"symbols":[{"__symbol":0,"name":"SDAnimatedImage","filePath":"./ios"},{"__symbol":1,"name":"SDAnimatedImageCoder","filePath":"./ios"},{"__symbol":2,"name":"SDAnimatedImageProtocol","filePath":"./ios"},{"__symbol":3,"name":"SDAnimatedImageProvider","filePath":"./ios"},{"__symbol":4,"name":"SDAnimatedImageView","filePath":"./ios"},{"__symbol":5,"name":"SDDiskCache","filePath":"./ios"},{"__symbol":6,"name":"SDDiskCacheProtocol","filePath":"./ios"},{"__symbol":7,"name":"SDImageAPNGCoder","filePath":"./ios"},{"__symbol":8,"name":"SDImageBlurTransformer","filePath":"./ios"},{"__symbol":9,"name":"SDImageCache","filePath":"./ios"},{"__symbol":10,"name":"SDImageCacheConfig","filePath":"./ios"},{"__symbol":11,"name":"SDImageCacheConfigExpireType","filePath":"./ios"},{"__symbol":12,"name":"SDImageCacheDecodeImageData","filePath":"./ios"},{"__symbol":13,"name":"SDImageCacheOptions","filePath":"./ios"},{"__symbol":14,"name":"SDImageCacheProtocol","filePath":"./ios"},{"__symbol":15,"name":"SDImageCacheType","filePath":"./ios"},{"__symbol":16,"name":"SDImageCachesManager","filePath":"./ios"},{"__symbol":17,"name":"SDImageCachesManagerOperationPolicy","filePath":"./ios"},{"__symbol":18,"name":"SDImageCoder","filePath":"./ios"},{"__symbol":19,"name":"SDImageCoderDecodeFirstFrameOnly","filePath":"./ios"},{"__symbol":20,"name":"SDImageCoderDecodeScaleFactor","filePath":"./ios"},{"__symbol":21,"name":"SDImageCoderEncodeCompressionQuality","filePath":"./ios"},{"__symbol":22,"name":"SDImageCoderEncodeFirstFrameOnly","filePath":"./ios"},{"__symbol":23,"name":"SDImageCoderHelper","filePath":"./ios"},{"__symbol":24,"name":"SDImageCoderWebImageContext","filePath":"./ios"},{"__symbol":25,"name":"SDImageCodersManager","filePath":"./ios"},{"__symbol":26,"name":"SDImageCroppingTransformer","filePath":"./ios"},{"__symbol":27,"name":"SDImageFilterTransformer","filePath":"./ios"},{"__symbol":28,"name":"SDImageFlippingTransformer","filePath":"./ios"},{"__symbol":29,"name":"SDImageFormatGIF","filePath":"./ios"},{"__symbol":30,"name":"SDImageFormatHEIC","filePath":"./ios"},{"__symbol":31,"name":"SDImageFormatHEIF","filePath":"./ios"},{"__symbol":32,"name":"SDImageFormatJPEG","filePath":"./ios"},{"__symbol":33,"name":"SDImageFormatPNG","filePath":"./ios"},{"__symbol":34,"name":"SDImageFormatTIFF","filePath":"./ios"},{"__symbol":35,"name":"SDImageFormatUndefined","filePath":"./ios"},{"__symbol":36,"name":"SDImageFormatWebP","filePath":"./ios"},{"__symbol":37,"name":"SDImageFrame","filePath":"./ios"},{"__symbol":38,"name":"SDImageGIFCoder","filePath":"./ios"},{"__symbol":39,"name":"SDImageIOCoder","filePath":"./ios"},{"__symbol":40,"name":"SDImageLoader","filePath":"./ios"},{"__symbol":41,"name":"SDImageLoaderDecodeImageData","filePath":"./ios"},{"__symbol":42,"name":"SDImageLoaderDecodeProgressiveImageData","filePath":"./ios"},{"__symbol":43,"name":"SDImageLoadersManager","filePath":"./ios"},{"__symbol":44,"name":"SDImagePipelineTransformer","filePath":"./ios"},{"__symbol":45,"name":"SDImageResizingTransformer","filePath":"./ios"},{"__symbol":46,"name":"SDImageRotationTransformer","filePath":"./ios"},{"__symbol":47,"name":"SDImageRoundCornerTransformer","filePath":"./ios"},{"__symbol":48,"name":"SDImageScaleFactorForKey","filePath":"./ios"},{"__symbol":49,"name":"SDImageScaleMode","filePath":"./ios"},{"__symbol":50,"name":"SDImageTintTransformer","filePath":"./ios"},{"__symbol":51,"name":"SDImageTransformer","filePath":"./ios"},{"__symbol":52,"name":"SDMemoryCache","filePath":"./ios"},{"__symbol":53,"name":"SDMemoryCacheCostForImage","filePath":"./ios"},{"__symbol":54,"name":"SDMemoryCacheProtocol","filePath":"./ios"},{"__symbol":55,"name":"SDProgressiveImageCoder","filePath":"./ios"},{"__symbol":56,"name":"SDScaledImageForKey","filePath":"./ios"},{"__symbol":57,"name":"SDScaledImageForScaleFactor","filePath":"./ios"},{"__symbol":58,"name":"SDTransformedKeyForKey","filePath":"./ios"},{"__symbol":59,"name":"SDWebImageActivityIndicator","filePath":"./ios"},{"__symbol":60,"name":"SDWebImageCacheKeyFilter","filePath":"./ios"},{"__symbol":61,"name":"SDWebImageCacheKeyFilterProtocol","filePath":"./ios"},{"__symbol":62,"name":"SDWebImageCacheSerializer","filePath":"./ios"},{"__symbol":63,"name":"SDWebImageCacheSerializerProtocol","filePath":"./ios"},{"__symbol":64,"name":"SDWebImageCombinedOperation","filePath":"./ios"},{"__symbol":65,"name":"SDWebImageContextAnimatedImageClass","filePath":"./ios"},{"__symbol":66,"name":"SDWebImageContextCacheKeyFilter","filePath":"./ios"},{"__symbol":67,"name":"SDWebImageContextCacheSerializer","filePath":"./ios"},{"__symbol":68,"name":"SDWebImageContextCustomManager","filePath":"./ios"},{"__symbol":69,"name":"SDWebImageContextDownloadRequestModifier","filePath":"./ios"},{"__symbol":70,"name":"SDWebImageContextImageScaleFactor","filePath":"./ios"},{"__symbol":71,"name":"SDWebImageContextImageTransformer","filePath":"./ios"},{"__symbol":72,"name":"SDWebImageContextLoaderCachedImage","filePath":"./ios"},{"__symbol":73,"name":"SDWebImageContextSetImageOperationKey","filePath":"./ios"},{"__symbol":74,"name":"SDWebImageContextStoreCacheType","filePath":"./ios"},{"__symbol":75,"name":"SDWebImageDownloadFinishNotification","filePath":"./ios"},{"__symbol":76,"name":"SDWebImageDownloadReceiveResponseNotification","filePath":"./ios"},{"__symbol":77,"name":"SDWebImageDownloadStartNotification","filePath":"./ios"},{"__symbol":78,"name":"SDWebImageDownloadStartNotificationVar","filePath":"./ios"},{"__symbol":79,"name":"SDWebImageDownloadStopNotification","filePath":"./ios"},{"__symbol":80,"name":"SDWebImageDownloadStopNotificationVar","filePath":"./ios"},{"__symbol":81,"name":"SDWebImageDownloadToken","filePath":"./ios"},{"__symbol":82,"name":"SDWebImageDownloader","filePath":"./ios"},{"__symbol":83,"name":"SDWebImageDownloaderConfig","filePath":"./ios"},{"__symbol":84,"name":"SDWebImageDownloaderExecutionOrder","filePath":"./ios"},{"__symbol":85,"name":"SDWebImageDownloaderOperation","filePath":"./ios"},{"__symbol":86,"name":"SDWebImageDownloaderOperationProtocol","filePath":"./ios"},{"__symbol":87,"name":"SDWebImageDownloaderOptions","filePath":"./ios"},{"__symbol":88,"name":"SDWebImageDownloaderRequestModifier","filePath":"./ios"},{"__symbol":89,"name":"SDWebImageDownloaderRequestModifierProtocol","filePath":"./ios"},{"__symbol":90,"name":"SDWebImageError","filePath":"./ios"},{"__symbol":91,"name":"SDWebImageErrorDomain","filePath":"./ios"},{"__symbol":92,"name":"SDWebImageErrorDownloadStatusCodeKey","filePath":"./ios"},{"__symbol":93,"name":"SDWebImageIndicator","filePath":"./ios"},{"__symbol":94,"name":"SDWebImageManager","filePath":"./ios"},{"__symbol":95,"name":"SDWebImageManagerDelegate","filePath":"./ios"},{"__symbol":96,"name":"SDWebImageOperation","filePath":"./ios"},{"__symbol":97,"name":"SDWebImageOptions","filePath":"./ios"},{"__symbol":98,"name":"SDWebImagePrefetchToken","filePath":"./ios"},{"__symbol":99,"name":"SDWebImagePrefetcher","filePath":"./ios"},{"__symbol":100,"name":"SDWebImagePrefetcherDelegate","filePath":"./ios"},{"__symbol":101,"name":"SDWebImageProgressIndicator","filePath":"./ios"},{"__symbol":102,"name":"SDWebImageProgressUnitCountUnknown","filePath":"./ios"},{"__symbol":103,"name":"SDWebImageTransition","filePath":"./ios"},{"__symbol":104,"name":"WebImageVersionNumber","filePath":"./ios"},{"__symbol":105,"name":"WebImageVersionString","filePath":"./ios"},{"__symbol":106,"name":"UIImageView","filePath":"./ios"}]}

Sorry, the diff of this file is too big to display

declare class SDImagePhotosLoader extends NSObject implements SDImageLoader {
canLoadWithURL(url: NSURL): boolean;
loadImageWithURLOptionsContextProgressCompleted(url: NSURL, options: SDWebImageOptions, context: NSDictionary<string, any>, progressBlock: (p1: number, p2: number, p3: NSURL) => void, completedBlock: (p1: UIImage, p2: NSData, p3: NSError, p4: boolean) => void): SDWebImageOperation;
static alloc(): SDImagePhotosLoader; // inherited from NSObject
static new(): SDImagePhotosLoader; // inherited from NSObject
fetchOptions: PHFetchOptions;
imageRequestOptions: PHImageRequestOptions;
requestImageAssetOnly: boolean;
static readonly sharedLoader: SDImagePhotosLoader;
readonly debugDescription: string; // inherited from NSObjectProtocol
readonly description: string; // inherited from NSObjectProtocol
readonly hash: number; // inherited from NSObjectProtocol
readonly isProxy: boolean; // inherited from NSObjectProtocol
readonly superclass: typeof NSObject; // inherited from NSObjectProtocol
readonly; // inherited from NSObjectProtocol
canRequestImageForURL(url: NSURL): boolean;
class(): typeof NSObject;
conformsToProtocol(aProtocol: any /* Protocol */): boolean;
isEqual(object: any): boolean;
isKindOfClass(aClass: typeof NSObject): boolean;
isMemberOfClass(aClass: typeof NSObject): boolean;
performSelector(aSelector: string): any;
performSelectorWithObject(aSelector: string, object: any): any;
performSelectorWithObjectWithObject(aSelector: string, object1: any, object2: any): any;
requestImageWithURLOptionsContextProgressCompleted(url: NSURL, options: SDWebImageOptions, context: NSDictionary<string, any>, progressBlock: (p1: number, p2: number, p3: NSURL) => void, completedBlock: (p1: UIImage, p2: NSData, p3: NSError, p4: boolean) => void): SDWebImageOperation;
respondsToSelector(aSelector: string): boolean;
retainCount(): number;
self(): this;
shouldBlockFailedURLWithURLError(url: NSURL, error: NSError): boolean;
}
declare let SDWebImageContextPhotosFetchOptions: string;
declare let SDWebImageContextPhotosImageRequestOptions: string;
declare let SDWebImageContextPhotosRequestImageData: string;
declare const enum SDWebImagePhotosError {
NotAuthorized = 10001,
NotImageAsset = 10002
}
declare let SDWebImagePhotosErrorDomain: string;
declare let SDWebImagePhotosPixelSize: CGSize;
declare let SDWebImagePhotosPluginVersionNumber: number;
declare let SDWebImagePhotosPluginVersionString: interop.Reference<number>;
declare let SDWebImagePhotosPointSize: CGSize;
declare let SDWebImagePhotosProgressExpectedSize: number;
declare let SDWebImagePhotosScheme: string;
import { Img } from '../image';
const ImagePlugin = {
install(Vue) {
Vue.registerElement('NSImg', () => Img);
}
};
export default ImagePlugin;
//# sourceMappingURL=index.mjs.map
{"moduleName":null,"summaries":[],"symbols":[]}

Sorry, the diff of this file is too big to display