showSocialShare.d.ts 414 B

12345678910111213141516
  1. export interface ShowSocialShareParams {
  2. socialShareType: 'text' | 'image' | 'url';
  3. title: string;
  4. description: string;
  5. content: string;
  6. icon: string;
  7. supportExternal?: boolean;
  8. }
  9. declare function showSocialShare(args: ShowSocialShareParams): any;
  10. declare namespace showSocialShare {
  11. var version: {
  12. android: string;
  13. ios: string;
  14. };
  15. }
  16. export default showSocialShare;