import ChapterInformation from './ChapterInformation'; /** @group Interfaces */ export default interface ContentMetaData { title?: string; artist?: string; artworkUrl?: string; chapterInfo?: ChapterInformation[]; /** Used only by AVPlayerViewControllerProvider */ subtitle?: string; /** Used only by AVPlayerViewControllerProvider */ channelDescription?: string; }