types.ts 516 B

1234567891011121314151617181920212223242526
  1. export type RawArtwork = {
  2. id: number;
  3. title: string;
  4. artist_display: string;
  5. place_of_origin: string;
  6. date_start: number;
  7. date_end: number;
  8. duration: number;
  9. dimensions: string;
  10. medium_display: string;
  11. credit_line: string;
  12. artwork_type_title: string;
  13. department_title: string;
  14. artist_title: string;
  15. classification_title: string;
  16. description: string;
  17. }
  18. export type Artwork = {
  19. id: number;
  20. title: string;
  21. country: string;
  22. date: number;
  23. artist: string;
  24. description: string;
  25. }