UNPKG

vuepress-plugin-social-share

Version:

Social sharing plugin for VuePress

14 lines (13 loc) 479 B
import type Vue from 'vue'; import type { ComponentOptions } from 'vue'; import type { SocialShareNetworkItem } from '../types'; interface SocialShareNetworkComponent extends Vue { isSvgIcon: boolean; shareUrl: string; network: SocialShareNetworkItem; isPlain: boolean; generateHashTags: (hashtags: string) => string; share: () => void; } declare const SocialShareNetwork: ComponentOptions<SocialShareNetworkComponent>; export default SocialShareNetwork;