#45 差分表示以外完了

This commit is contained in:
2025-06-18 23:44:33 +09:00
parent c6f7e8a696
commit 0c4ee9744e
4 changed files with 83 additions and 10 deletions
+12
View File
@@ -22,4 +22,16 @@ export type User = {
inheritanceCode: string
role: UserRole }
export type WikiPage = {
id: number
title: string
updated_at?: string }
export type WikiPageChange = {
sha: string
wiki_page: WikiPage
user: User
change_type: string
timestamp: string }
export type UserRole = typeof USER_ROLES[number]