export interface NewsList { id: number date: string title: string description: string preview: string type: string } export interface News { content: string date: string id: number title: string preview: string }