UNPKG

react-native-receive-sharing-intent

Version:

A React Native plugin that enables React Native apps to receive sharing photos, videos, text, urls or any other file types from another app.

9 lines (8 loc) 321 B
import type { IReturnData, IUtils } from "./ReceiveSharingIntent.interfaces"; declare class Utils implements IUtils { sortData(data: any): Array<IReturnData>; getFileName: (file: string) => string; getExtension: (fileName: string) => string; getMimeType: (file: string) => string; } export default Utils;