1export type ParsedPost = { 2 thread?: { 3 ancestors: ParsedPost[]; 4 }; 5 author: string; 6 text: string; 7 images?: { 8 index: number; 9 alt: string; 10 }[]; 11 quotePost?: ParsedPost; 12};