#26 完了
This commit is contained in:
@@ -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 }
|
||||
Reference in New Issue
Block a user