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.
16 lines (15 loc) • 424 B
TypeScript
export interface IReceiveSharingIntent {
getReceivedFiles(handler: Function, errorHandler: Function, protocol: string): void;
}
export interface IUtils {
sortData(data: any): any;
}
export interface IReturnData {
filePath?: any | string;
text?: any | string;
weblink?: any | string;
mimeType?: any | string;
contentUri?: any | string;
fileName?: any | string;
extension?: any | string;
}