このコミットが含まれているのは:
2025-06-17 02:30:26 +09:00
コミット ceeefa9b7c
10個のファイルの変更180行の追加22行の削除
+8 -2
ファイルの表示
@@ -1,3 +1,7 @@
import { CATEGORIES, USER_ROLES } from '@/consts'
export type Category = typeof CATEGORIES[number]
export type Post = {
id: number
url: string
@@ -9,11 +13,13 @@ export type Post = {
export type Tag = {
id: number
name: string
category: string
category: Category
count?: number}
export type User = {
id: number
name: string | null
inheritanceCode: string
role: string }
role: UserRole }
export type UserRole = typeof USER_ROLES[number]