mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
20 lines
424 B
TypeScript
20 lines
424 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;
|