15 lines
269 B
TypeScript
15 lines
269 B
TypeScript
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;
|
|
} |