ngx-social-button
Version:
Social login/share buttons for Angular 6, 7, 8
12 lines (11 loc) • 433 B
TypeScript
import { EventEmitter, ElementRef, AfterViewInit } from '@angular/core';
import { SocialService } from '../social.service';
export declare class LinkedinSharingButton implements AfterViewInit {
private socialAuthService;
private document;
share: any;
response: EventEmitter<Boolean>;
element: ElementRef;
constructor(socialAuthService: SocialService, document: any);
ngAfterViewInit(): void;
}