UNPKG

sharethis-angular

Version:

ShareThis Share Buttons for Angular apps/sites. Empower your online audience to share and amplify your content on social networks such as Facebook, WhatsApp, Linkedin, Twitter and many more. Includes four types of share buttons - Inline Share Buttons, Sti

17 lines (16 loc) 564 B
import { InlineFollowButtonsConfig, InlineReactionButtonsConfig, InlineShareButtonsConfig, StickyShareButtonsConfig } from './types'; declare global { interface Window { onShareThisLoaded: () => void; __sharethis__: any; } } interface Component { config: (StickyShareButtonsConfig | InlineFollowButtonsConfig | InlineReactionButtonsConfig | InlineShareButtonsConfig) & { id?: string; property?: string; }; buttons: HTMLElement; } export default function (component: Component, product: string): void; export {};