このコミットが含まれているのは:
2025-06-29 05:29:42 +09:00
コミット d403b3aa89
2個のファイルの変更19行の追加17行の削除
+7 -6
ファイルの表示
@@ -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