1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/app-mobile/utils/ShareExtension.ts
2020-11-05 16:58:23 +00:00

20 lines
423 B
TypeScript

const { NativeModules, Platform } = require('react-native');
export interface SharedData {
title?: string,
text?: string,
resources?: string[]
}
const ShareExtension = (Platform.OS === 'android' && NativeModules.ShareExtension) ?
{
data: () => NativeModules.ShareExtension.data(),
close: () => NativeModules.ShareExtension.close(),
} :
{
data: () => {},
close: () => {},
};
export default ShareExtension;