This commit is contained in:
2025-06-12 00:46:06 +09:00
parent 56f9ba699c
commit 3363fcd2ae
14 changed files with 32 additions and 171 deletions
+19
View File
@@ -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 }