@@ -262,7 +262,7 @@ if (await RNFS.isResumable('JobID')) {
262262 RNFS .resumeDownload (' JobID' )
263263}
264264```
265- * Check if the the download job with this ID is resumable.
265+ * Check if the download job with this ID is resumable.
266266
267267### ` touch `
268268``` ts
@@ -278,13 +278,13 @@ await RNFS.scanFile('FilePath', Date, Date)
278278```
279279* Scan the file using [ Media Scanner] ( https://developer.android.com/reference/android/media/MediaScannerConnection ) .
280280
281- # MediaStore
282-
283- ### RNFS2 can now interact with the MediaStore on Android. This allows you to add, delete, and update media files in the MediaStore.
281+ ----
284282
285- ### Inspiration for this feature came from [ react-native-blob-util] ( https://github.com/RonRadtke/react-native-blob-util/wiki/MediaStore/ )
283+ # MediaStore
284+ _ RNFS2 can now interact with the MediaStore on Android. This allows you to add, delete, and update media files in the MediaStore._
286285
287- ### This feature is only available on Android targeting API 29 or higher. And may require the following permissions:
286+ * Inspiration for this feature came from [ react-native-blob-util] ( https://github.com/RonRadtke/react-native-blob-util/wiki/MediaStore/ )
287+ * This feature is only available on Android targeting API 29 or higher. And may require the following permissions:
288288
289289``` xml
290290<!-- Required only if your app needs to access images or photos that other apps created. -->
@@ -385,26 +385,26 @@ await RNFS.MediaStore.deleteFromMediaStore('content://media/external/images/medi
385385
386386## FileDescriptor
387387``` ts
388- type FileDescriptor = {
389- name: string ;
390- parentFolder: string ;
391- mimeType: string
388+ type FileDescriptor = {
389+ name: string ;
390+ parentFolder: string ;
391+ mimeType: string
392392};
393393```
394394
395395## MediaStoreSearchOptions
396396``` ts
397- type MediaStoreSearchOptions = {
398- uri: string ;
399- fileName: string ;
400- relativePath: string ;
401- mediaType: MediaCollections
397+ type MediaStoreSearchOptions = {
398+ uri: string ;
399+ fileName: string ;
400+ relativePath: string ;
401+ mediaType: MediaCollections
402402};
403403```
404404
405405## MediaStoreQueryResult
406406``` ts
407- type MediaStoreQueryResult = {
407+ type MediaStoreQueryResult = {
408408 contentUri: string ;
409409};
410410```
0 commit comments