aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/types.ts
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-12 21:59:55 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-12 21:59:55 -0800
commit2c3cad528a247c771bca136466337877f76f280f (patch)
treea2172f49e6142b287b0e2f33c07ed878fb8e449c /frontend/src/types.ts
parent42f1b4de384bcbbdab3b80d8e5cc53b36fcffd50 (diff)
downloadneko-2c3cad528a247c771bca136466337877f76f280f.tar.gz
neko-2c3cad528a247c771bca136466337877f76f280f.tar.bz2
neko-2c3cad528a247c771bca136466337877f76f280f.zip
Implement Frontend Feed List with tests
Diffstat (limited to 'frontend/src/types.ts')
-rw-r--r--frontend/src/types.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/frontend/src/types.ts b/frontend/src/types.ts
new file mode 100644
index 0000000..905b1dc
--- /dev/null
+++ b/frontend/src/types.ts
@@ -0,0 +1,7 @@
+export interface Feed {
+ _id: number;
+ url: string;
+ web_url: string;
+ title: string;
+ category: string;
+}