- export interface ShowSocialShareParams {
- socialShareType: 'text' | 'image' | 'url';
- title: string;
- description: string;
- content: string;
- icon: string;
- supportExternal?: boolean;
- }
- declare function showSocialShare(args: ShowSocialShareParams): any;
- declare namespace showSocialShare {
- var version: {
- android: string;
- ios: string;
- };
- }
- export default showSocialShare;
|