diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-13 06:55:21 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-13 06:55:21 -0800 |
| commit | 3ba71500bc2d60a00ca81b9439305029670f4d52 (patch) | |
| tree | 5752a119effd739c62c80c2d15d4520c2e53eadf /frontend/src/types.ts | |
| parent | 2c3cad528a247c771bca136466337877f76f280f (diff) | |
| download | neko-3ba71500bc2d60a00ca81b9439305029670f4d52.tar.gz neko-3ba71500bc2d60a00ca81b9439305029670f4d52.tar.bz2 neko-3ba71500bc2d60a00ca81b9439305029670f4d52.zip | |
Implement Frontend Feed Items View with tests
Diffstat (limited to 'frontend/src/types.ts')
| -rw-r--r-- | frontend/src/types.ts | 14 |
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; +} |
