@automattic/social-previews
Version:
A suite of components to generate previews for a post for both social and search engines.
15 lines (12 loc) • 301 B
text/typescript
import type { SocialPreviewBaseProps } from '../types';
export type BlueskyUser = {
displayName: string;
avatarUrl: string;
address: string;
};
export type BlueskyPreviewProps = SocialPreviewBaseProps & {
appendUrl?: boolean;
user?: BlueskyUser;
customText?: string;
customImage?: string;
};