UNPKG

vuepress-plugin-social-share

Version:

Social sharing plugin for VuePress

11 lines (10 loc) 352 B
import type { ComponentOptions } from 'vue'; import type Vue from 'vue'; interface GlobalSocialShareComponent extends Vue { isActive: boolean; visible: boolean; handleClick: (evt: MouseEvent) => void; toggle: () => void; } declare const GlobalSocialShare: ComponentOptions<GlobalSocialShareComponent>; export default GlobalSocialShare;