news.ts 218 B

123456789101112131415
  1. export interface NewsList {
  2. id: number
  3. date: string
  4. title: string
  5. description: string
  6. preview: string
  7. type: string
  8. }
  9. export interface News {
  10. content: string
  11. date: string
  12. id: number
  13. title: string
  14. }