|
@@ -750,8 +750,6 @@ A set of configurations that will be injected into a `fetch` method, with the fo
|
750
|
750
|
- mediaScannable : A `boolean` value, see [Officail Document](https://developer.android.com/reference/android/app/DownloadManager.html#addCompletedDownload(java.lang.String, java.lang.String, boolean, java.lang.String, java.lang.String, long, boolean))
|
751
|
751
|
- notification : A `boolean` value decide whether show a notification when download complete.
|
752
|
752
|
|
753
|
|
----
|
754
|
|
-
|
755
|
753
|
### RNFetchBlobResponse
|
756
|
754
|
|
757
|
755
|
When `fetch` success, it resolve a `FetchBlobResponse` object as first argument. `FetchBlobResponse` object has the following methods (these method are synchronous, so you might take quite a performance impact if the file is big)
|
|
@@ -771,7 +769,6 @@ RNFetchBlob.session('session-name').add(resp.path())
|
771
|
769
|
// or
|
772
|
770
|
resp.session('session-name')
|
773
|
771
|
```
|
774
|
|
----
|
775
|
772
|
|
776
|
773
|
### RNFetchBlobStat
|
777
|
774
|
|
|
@@ -790,8 +787,8 @@ Statistic data of a file, see the following sample object.
|
790
|
787
|
// last modified timestamp
|
791
|
788
|
lastModified : 141323298
|
792
|
789
|
}
|
|
790
|
+```
|
793
|
791
|
|
794
|
|
----
|
795
|
792
|
|
796
|
793
|
### RNFetchBlobSession
|
797
|
794
|
|