このコミットが含まれているのは:
2025-06-12 00:46:06 +09:00
コミット 3363fcd2ae
14個のファイルの変更32行の追加171行の削除
+19
ファイルの表示
@@ -0,0 +1,19 @@
export type Post = {
id: number
url: string
title: string
thumbnail: string
tags: Tag[]
viewed: boolean }
export type Tag = {
id: number
name: string
category: string
count?: number}
export type User = {
id: number
name: string | null
inheritanceCode: string
role: string }