import { Course } from './Course'; import { PlayItemsResponse } from './util/Response'; export interface AristCourseCollection { 'artist-id': string; 'artist-name': string; 'artist-slug': string; 'artist-thumbnail-image'?: string; 'start-at': string; courses: Course[]; image: string; } export type ArtistCourseCollectionResponse = PlayItemsResponse< AristCourseCollection >;