UNPKG

@automattic/social-previews

Version:

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

10 lines (7 loc) 289 B
import { SocialPreviewBaseProps, SocialPreviewsBaseProps } from '../types'; export type NextdoorPreviewProps = SocialPreviewBaseProps & { neighborhood?: string; name: string; profileImage: string; }; export type NextdoorPreviewsProps = NextdoorPreviewProps & SocialPreviewsBaseProps;