news.ts 236 B

12345678910111213141516
  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. preview: string
  15. }