aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/types.ts
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-13 07:46:58 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-13 09:38:38 -0800
commit23a48e1d498680be769e931f46ddb1fd44f38d1a (patch)
tree54bb607e19b3eec0e5c932e6748d9ca6304d4b17 /frontend/src/types.ts
parenta5cd9538b0db731a0d0e10e58804ef8ad32211b7 (diff)
downloadneko-23a48e1d498680be769e931f46ddb1fd44f38d1a.tar.gz
neko-23a48e1d498680be769e931f46ddb1fd44f38d1a.tar.bz2
neko-23a48e1d498680be769e931f46ddb1fd44f38d1a.zip
Implement Tag View and fix tests
Diffstat (limited to 'frontend/src/types.ts')
-rw-r--r--frontend/src/types.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/frontend/src/types.ts b/frontend/src/types.ts
index 872e608..4c1110f 100644
--- a/frontend/src/types.ts
+++ b/frontend/src/types.ts
@@ -19,3 +19,6 @@ export interface Item {
header_image?: string;
feed_title?: string;
}
+export interface Category {
+ title: string;
+}