export type ParsedPost = { thread?: { ancestors: ParsedPost[]; }; author: string; text: string; images?: { index: number; alt: string; }[]; quotePost?: ParsedPost; };