このコミットが含まれているのは:
2026-05-22 03:29:18 +09:00
コミット 7b6b24b9c5
13個のファイルの変更255行の追加25行の削除
+5 -2
ファイルの表示
@@ -126,7 +126,7 @@ export type Post = {
title: string | null
thumbnail: string | null
thumbnailBase: string | null
tags: Tag[]
tags: TagWithSections[]
parentPosts?: Post[]
childPosts?: Post[]
siblingPosts?: Record<`${ number }`, Post[]>
@@ -187,7 +187,6 @@ export type Tag = {
hasWiki: boolean
materialId: number | null
hasDeerjikists: boolean
children?: Tag[]
matchedAlias?: string | null }
export type TagVersion = {
@@ -201,6 +200,10 @@ export type TagVersion = {
createdAt: string
createdByUser: { id: number; name: string | null } | null }
export type TagWithSections = Tag & { sections: { beginMs: number
endMs: number }[]
children: TagWithSections[] }
export type Theatre = {
id: number
name: string | null