UNPKG

@stefanobartoletti/nuxt-social-share

Version:
27 lines (26 loc) 485 B
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; }