This commit is contained in:
2026-05-06 15:47:20 +09:00
parent b47cdc7ad7
commit d54e66a114
4 changed files with 72 additions and 52 deletions
+2
View File
@@ -121,6 +121,7 @@ export type Platform = typeof PLATFORMS[number]
export type Post = {
id: number
versionNo: number
url: string
title: string | null
thumbnail: string | null
@@ -146,6 +147,7 @@ export type PostTagChange = {
export type PostVersion = {
postId: number
latestVersionNo: number
versionNo: number
eventType: 'create' | 'update' | 'discard' | 'restore'
title: { current: string | null; prev: string | null }