export interface Share { /** * 平台 * * - `weChat`:微信好友 * - `friendsCircle`:微信朋友圈 */ platform?: 'weChat' | 'friendsCircle'; /** * 标题 */ title?: string; /** * 内容 */ content?: string; /** * 链接 */ url?: string; /** * 图片 */ pic?: string; success?: () => void; fail?: () => void; } declare function share({ success, fail, ...share }: Share): void; export default share;