export interface LibraryBlock { ID: number; title: string; content: string; date: string; preview: string; category: BlockCategory[]; } export interface BlockCategory { post_id: number; name: string; }