aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/types.ts')
-rw-r--r--frontend/src/types.ts14
1 files changed, 14 insertions, 0 deletions
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;
+}