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

9 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  1. // 公共api
  2. export interface indexInterface {
  3. modaOpen: boolean,
  4. title: string,
  5. }
  6. // 前台首页
  7. export interface homePageInterface {
  8. id: number;
  9. blogtitle?: string; // 博客标题,可选字段
  10. blogcontent?: string; // 博客内容,可选字段
  11. diarytitle?: string; // 日记标题,可选字段
  12. diarycontent?: string; // 日记内容,可选字段
  13. imglink: string; // 图片链接
  14. typename: string; // 类型名称
  15. create_at: string; // 创建时间
  16. update_at?: string; // 更新时间,可选字段
  17. wordcount?: number; // 字数统计,可选字段
  18. labelnames?: string[]; // 标签名称数组,可选字段
  19. }