This commit is contained in:
2025-06-29 05:29:42 +09:00
parent 8814be9ee9
commit d403b3aa89
2 changed files with 19 additions and 17 deletions
+7 -6
View File
@@ -3,12 +3,13 @@ import { CATEGORIES, USER_ROLES } from '@/consts'
export type Category = typeof CATEGORIES[number]
export type Post = {
id: number
url: string
title: string
thumbnail: string
tags: Tag[]
viewed: boolean }
id: number
url: string
title: string
thumbnail: string
thumbnailBase: string
tags: Tag[]
viewed: boolean }
export type Tag = {
id: number