'frontend/src/types.ts' を更新

このコミットが含まれているのは:
2026-03-13 07:15:48 +09:00
コミット f36e2725bd
+2 -2
ファイルの表示
@@ -54,8 +54,8 @@ export type Post = {
export type PostTagChange = {
post: Post
tag: Tag
user?: User
tag: Tag | null
user: User | null
changeType: 'add' | 'remove'
timestamp: string }