@stefanobartoletti/nuxt-social-share
Version:
Simple Social Sharing for Nuxt
27 lines (26 loc) • 485 B
TypeScript
export interface Options {
network: string;
url?: string;
title?: string;
user?: string;
hashtags?: string;
image?: string;
}
export interface Network {
name: string;
shareUrl: string;
args?: {
title?: string;
user?: string;
hashtags?: string;
image?: string;
};
icon: {
viewBox: string;
path: string;
};
color: string;
}
export interface NetworksIndex {
[key: string]: Network;
}