@nativescript-community/ui-image 4.3.33 → 4.3.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.3.35](https://github.com/nativescript-community/ui-image/compare/v4.3.34...v4.3.35) (2024-03-22)
7
+
8
+ **Note:** Version bump only for package @nativescript-community/ui-image
9
+
10
+ ## [4.3.34](https://github.com/nativescript-community/ui-image/compare/v4.3.33...v4.3.34) (2024-02-27)
11
+
12
+ **Note:** Version bump only for package @nativescript-community/ui-image
13
+
6
14
  ## [4.3.33](https://github.com/nativescript-community/ui-image/compare/v4.3.32...v4.3.33) (2024-02-27)
7
15
 
8
16
  **Note:** Version bump only for package @nativescript-community/ui-image
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@nativescript-community/ui-image-angular",
3
+ "main": "index.js",
4
+ "module": "fesm2022/nativescript-community-ui-image-angular.mjs",
5
+ "typings": "index.d.ts",
6
+ "exports": {
7
+ "./package.json": {
8
+ "default": "./package.json"
9
+ },
10
+ ".": {
11
+ "types": "./index.d.ts",
12
+ "esm2022": "./esm2022/nativescript-community-ui-image-angular.mjs",
13
+ "esm": "./esm2022/nativescript-community-ui-image-angular.mjs",
14
+ "default": "./fesm2022/nativescript-community-ui-image-angular.mjs"
15
+ }
16
+ },
17
+ "sideEffects": false,
18
+ "dependencies": {
19
+ "tslib": "^2.3.0"
20
+ },
21
+ "scripts": {
22
+ "prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy in full compilation mode. This is not allowed.\\nPlease delete and rebuild the package with Ivy partial compilation mode, before attempting to publish.\\n')\" && exit 1"
23
+ }
24
+ }
package/index.ios.d.ts CHANGED
@@ -37,6 +37,7 @@ export declare class Img extends ImageBase {
37
37
  nativeImageViewProtected: SDAnimatedImageView | UIImageView;
38
38
  isLoading: boolean;
39
39
  mCacheKey: string;
40
+ contextOptions: any;
40
41
  get cacheKey(): string;
41
42
  protected mImageSourceAffectsLayout: boolean;
42
43
  protected mCIFilter: CIFilter;
package/index.ios.js CHANGED
@@ -186,6 +186,7 @@ export class Img extends ImageBase {
186
186
  constructor() {
187
187
  super(...arguments);
188
188
  this.isLoading = false;
189
+ this.contextOptions = null;
189
190
  this.mImageSourceAffectsLayout = true;
190
191
  this.handleImageLoaded = (image, error, cacheType) => {
191
192
  this.isLoading = false;
@@ -289,10 +290,10 @@ export class Img extends ImageBase {
289
290
  await imagePipeLine.evictFromCache(cachekKey);
290
291
  // }
291
292
  }
292
- this.src = null;
293
+ // this.src = null;
293
294
  // ensure we clear the image as
294
295
  this._setNativeImage(null, false);
295
- this.src = src;
296
+ this.initImage();
296
297
  }
297
298
  _setNativeImage(nativeImage, animated = true) {
298
299
  if (animated && this.fadeDuration) {
@@ -431,6 +432,13 @@ export class Img extends ImageBase {
431
432
  options |= 512 /* SDWebImageOptions.TransformAnimatedImage */;
432
433
  }
433
434
  context.setValueForKey(SDImagePipelineTransformer.transformerWithTransformers(transformers), SDWebImageContextImageTransformer);
435
+ // context.setValueForKey(SDImageCacheType.Memory, SDWebImageContextOriginalStoreCacheType);
436
+ }
437
+ if (this.contextOptions && typeof this.contextOptions === 'object') {
438
+ Object.keys(this.contextOptions).forEach(k => {
439
+ let value = this.contextOptions[k];
440
+ context.setValueForKey(value, k);
441
+ });
434
442
  }
435
443
  this.mCacheKey = SDWebImageManager.sharedManager.cacheKeyForURLContext(uri, context);
436
444
  this.nativeImageViewProtected.sd_setImageWithURLPlaceholderImageOptionsContextProgressCompleted(uri, this.placeholderImage, options, context, this.onLoadProgress, this.handleImageLoaded);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativescript-community/ui-image",
3
- "version": "4.3.33",
3
+ "version": "4.3.35",
4
4
  "description": "Advanced and efficient image display plugin which uses Fresco (Android) and SDWebImage (iOS) to implement caching, placeholders, image effects, and much more.",
5
5
  "main": "./index",
6
6
  "sideEffects": false,
@@ -36,5 +36,5 @@
36
36
  },
37
37
  "license": "Apache-2.0",
38
38
  "readmeFilename": "README.md",
39
- "gitHead": "8895f979042e34e645ef29adc45c5245f9a1dd32"
39
+ "gitHead": "c64c5f445ed493e2ba34f16324766aabaec6e04e"
40
40
  }
Binary file
package/vue/index.mjs ADDED
@@ -0,0 +1,8 @@
1
+ import { Img } from '../image';
2
+ const ImagePlugin = {
3
+ install(Vue) {
4
+ Vue.registerElement('NSImg', () => Img);
5
+ }
6
+ };
7
+ export default ImagePlugin;
8
+ //# sourceMappingURL=index.mjs.map
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[],"symbols":[]}
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[],"symbols":[]}
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[],"symbols":[]}
@@ -1 +0,0 @@
1
- {"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"}]}
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[],"symbols":[]}