import { Playlist } from './Playlist'; import { PlayItemsResponse } from './util/Response'; import { InstrumentType } from './Instrument'; import { Genre } from './Genre'; export interface Path { 'description-long': string; 'hero-image': string; 'preview-video-thumbnail': string; 'preview-video-url': string; 'thumbnail-image': string; id: string; image: string; instrument: InstrumentType; playlists: Playlist[]; slug: string; style: Genre; title: string; } export type GetPathsResponse = PlayItemsResponse;