@stefanobartoletti/nuxt-social-share
Version:
Simple Social Sharing for Nuxt
45 lines (44 loc) • 998 B
TypeScript
import type { Options } from './types//index.js';
export declare function useSocialShare(options?: Options): import("vue-demi").Ref<{
name: string;
shareUrl: string;
args?: {
title?: string | undefined;
user?: string | undefined;
hashtags?: string | undefined;
image?: string | undefined;
} | undefined;
icon: {
viewBox: string;
path: string;
};
color: string;
}, {
name: string;
shareUrl: string;
args?: {
title?: string;
user?: string;
hashtags?: string;
image?: string;
};
icon: {
viewBox: string;
path: string;
};
color: string;
} | {
name: string;
shareUrl: string;
args?: {
title?: string | undefined;
user?: string | undefined;
hashtags?: string | undefined;
image?: string | undefined;
} | undefined;
icon: {
viewBox: string;
path: string;
};
color: string;
}>;