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.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;
+}