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.

41 lines
692 B

9 months ago
8 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
  1. export interface blogInterface {
  2. key: string,
  3. id:number,
  4. blogtitle: string,
  5. create_at: Date,
  6. readnum: number,
  7. readminite: number,
  8. wordcount: number,
  9. img: string,
  10. blogcontent: string,
  11. typename: string,
  12. labelnames: string
  13. }
  14. export interface classticInterface {
  15. key: string,
  16. id?: number,
  17. header: string,
  18. text: string,
  19. descr: string
  20. }
  21. export interface comLinkInterface {
  22. key: string,
  23. id?: number,
  24. linktext: string,
  25. linkurl: string,
  26. descr: string
  27. }
  28. export interface typeInterface {
  29. key: string,
  30. id?: number,
  31. typename: string,
  32. descr: string
  33. }
  34. export interface labelInterface {
  35. key: string,
  36. id?: number,
  37. labelname: string,
  38. descr: string
  39. }