This commit is contained in:
2025-05-30 01:21:30 +09:00
parent e8e18160bc
commit f93cea4e51
8 changed files with 85 additions and 8 deletions
+2 -1
View File
@@ -19,7 +19,8 @@ type Post = { id: number
url: string
title: string
thumbnail: string
tags: Tag[] }
tags: Tag[]
viewed: boolean }
type User = { id: number
name: string | null