ブログ編集画面

This commit is contained in:
simple321vip
2022-04-19 00:51:31 +08:00
parent 4caddc06c0
commit 952587cd2c
7 changed files with 279 additions and 17 deletions
+15
View File
@@ -0,0 +1,15 @@
type Blog = {
blog_id: string,
blog_type_id: string,
blog_type_name: string,
blog_title: string,
blog_prex: string
}
type BlogType = {
blog_type_id: string,
blog_type_name: string,
blog_list: Blog[]
}
export { Blog, BlogType }