UNPKG

web-social-share

Version:

A Web Component to share urls and text on social networks

12 lines (10 loc) 355 B
import type { Components, JSX } from "../types/components"; interface WebSocialShare extends Components.WebSocialShare, HTMLElement {} export const WebSocialShare: { prototype: WebSocialShare; new (): WebSocialShare; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;