export interface NewsSource { name: string, icon?: string, sourceURL?: string, type: "RSS", itemURL?: string, } export interface NewsItem { id : number; title : string; content : string; source: NewsSource; publishedAt : Date; }