UNPKG

@automattic/social-previews

Version:

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

12 lines (9 loc) 236 B
import type { SocialPreviewBaseProps } from '../types'; export type TumblrUser = { displayName: string; avatarUrl?: string; }; export type TumblrPreviewProps = SocialPreviewBaseProps & { user?: TumblrUser; customText?: string; };