From 3ba71500bc2d60a00ca81b9439305029670f4d52 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Fri, 13 Feb 2026 06:55:21 -0800 Subject: Implement Frontend Feed Items View with tests --- frontend/src/types.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'frontend/src/types.ts') diff --git a/frontend/src/types.ts b/frontend/src/types.ts index 905b1dc..872e608 100644 --- a/frontend/src/types.ts +++ b/frontend/src/types.ts @@ -5,3 +5,17 @@ export interface Feed { title: string; category: string; } + +export interface Item { + _id: number; + feed_id: number; + title: string; + url: string; + description: string; + publish_date: string; + read: boolean; + starred: boolean; + full_content?: string; + header_image?: string; + feed_title?: string; +} -- cgit v1.2.3