From cba29e6aae637b04ff6eaf28f74bc15b6242b9ea Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Mon, 16 Feb 2026 19:37:50 -0800 Subject: Remove legacy V2 React frontend and update build/test scripts to focus on Vanilla JS (V3) --- frontend/src/types.ts | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 frontend/src/types.ts (limited to 'frontend/src/types.ts') diff --git a/frontend/src/types.ts b/frontend/src/types.ts deleted file mode 100644 index 1feea1f..0000000 --- a/frontend/src/types.ts +++ /dev/null @@ -1,24 +0,0 @@ -export interface Feed { - _id: number; - url: string; - web_url: string; - 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; -} -export interface Category { - title: string; -} -- cgit v1.2.3