UNPKG

@automattic/social-previews

Version:

A suite of components to generate previews for a post for both social and search engines.

11 lines (8 loc) 312 B
import { SocialPreviewBaseProps, SocialPreviewsBaseProps } from '../types'; export type LinkedInPreviewProps = SocialPreviewBaseProps & { jobTitle?: string; name: string; profileImage: string; articleReadTime?: number; }; export type LinkedInPreviewsProps = LinkedInPreviewProps & SocialPreviewsBaseProps;