You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
414 B
22 lines
414 B
// 博客管理
|
|
export interface blogInterface {
|
|
key: string,
|
|
blogtitle: string,
|
|
create_at: Date,
|
|
readnum: number,
|
|
readminite: number,
|
|
wordcount: number,
|
|
img: string,
|
|
blogcontent: string,
|
|
typename: string,
|
|
labelnames: string
|
|
}
|
|
|
|
// 语录管理
|
|
export interface classticInterface {
|
|
key:string,
|
|
id:number,
|
|
header: string,
|
|
text: string,
|
|
descr: string
|
|
}
|