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.
 
 
 
 

19 lines
650 B

// 公共api
export interface indexInterface {
modaOpen: boolean,
title: string,
}
// 前台首页
export interface homePageInterface {
id: number;
blogtitle?: string; // 博客标题,可选字段
blogcontent?: string; // 博客内容,可选字段
diarytitle?: string; // 日记标题,可选字段
diarycontent?: string; // 日记内容,可选字段
imglink: string; // 图片链接
typename: string; // 类型名称
create_at: string; // 创建时间
update_at?: string; // 更新时间,可选字段
wordcount?: number; // 字数统计,可选字段
labelnames?: string[]; // 标签名称数组,可选字段
}