export type PostEmbedImage = { type: 'images'; images: { alt: string; thumb: string; fullsize: string; aspectRatio?: { width: number; height: number; }; }[]; }; export type PostEmbedExternal = { type: 'external'; external: { href: string; thumb: string; title: string; description: string; }; }; export type PostEmbedVideo = { type: 'video'; video: { playlist: string; thumb: string; alt: string; aspectRatio?: { width: number; height: number; }; }; }; export type UnknownEmbed = { type: 'unknown'; } & Record; export type PostEmbed = PostEmbedImage | PostEmbedExternal | PostEmbedVideo | UnknownEmbed; export type PostData = { href?: string; id?: string; reposted?: { handle: string; href: string }; replyTo?: { handle: string; href: string }; author: { displayName: string; handle: string; avatar?: string; href?: string; }; replyCount: number; repostCount: number; likeCount: number; createdAt: string; embed?: PostEmbed; htmlContent?: string; replies?: PostData[]; }; export { default as Post } from './Post.svelte';