DefinitelyTyped/types/react-native-share/react-native-share-tests.ts
2018-06-12 23:49:35 +02:00

36 lines
555 B
TypeScript

import Share from 'react-native-share';
// $ExpectType Promise<any>
Share.open({
url: '',
message: '',
});
// $ExpectType Promise<any>
Share.open({
url: '',
type: '',
message: '',
title: '',
subject: '',
excludedActivityTypes: '',
showAppsToview: true,
});
// $ExpectType Promise<any>
Share.shareSingle({
url: '',
message: '',
social: 'facebook',
});
// $ExpectType Promise<any>
Share.shareSingle({
url: '',
type: '',
message: '',
title: '',
subject: '',
social: 'facebook',
});