export interface Post { id: number; title: string; tldr: string; content: string; } export interface Comment { content: string; }