v2.0.-1 of newsriver
[rss-reader.git] / src / parsers / base.ts
1 export type FeedItem = {
2   title: string;
3   link: string;
4   guid: string;
5   pubDate: number;
6   content: string;
7 }
8
9 export type Feed = {
10   title: string;
11   link: string;
12   items: FeedItem[];
13 };