このコミットが含まれているのは:
2025-07-13 02:46:13 +09:00
コミット 0c46cf28db
29個のファイルの変更509行の追加456行の削除
+4 -1
ファイルの表示
@@ -1,4 +1,4 @@
import { CATEGORIES, USER_ROLES } from '@/consts'
import { CATEGORIES, USER_ROLES, ViewFlagBehavior } from '@/consts'
export type Category = typeof CATEGORIES[number]
@@ -28,9 +28,12 @@ export type User = {
inheritanceCode: string
role: UserRole }
export type ViewFlagBehavior = typeof ViewFlagBehavior[keyof typeof ViewFlagBehavior]
export type WikiPage = {
id: number
title: string
body: string
sha: string
pred?: string
succ?: string