123456789101112131415161718192021222324252627282930313233343536373839 |
-
-
-
-
- import {
- NativeModules,
- DeviceEventEmitter,
- Platform,
- NativeAppEventEmitter,
- } from 'react-native'
-
- const RNFetchBlob:RNFetchBlobNative = NativeModules.RNFetchBlob
-
-
- function actionViewIntent(path:string, mime:string = 'text/plain') {
- if(Platform.OS === 'android')
- return RNFetchBlob.actionViewIntent(path, mime)
- else
- return Promise.reject('RNFetchBlob.actionViewIntent only supports Android.')
- }
-
- function getContentIntent(mime:string) {
- if(Platform.OS === 'android')
- return RNFetchBlob.getContentIntent(mime)
- else
- return Promise.reject('RNFetchBlob.getContentIntent only supports Android.')
- }
-
-
- export default {
- actionViewIntent,
- getContentIntent
- }
|