Added footnote to music property

This commit is contained in:
Atari Tom 2022-04-08 11:18:06 -04:00
parent 53f379215b
commit da04d38069

View File

@ -1,6 +1,11 @@
import { YouTubeChannel } from './Channel';
import { YouTubeThumbnail } from './Thumbnail';
/**
* Licensed music in the video
*
* The property names change depending on your region's language.
*/
interface VideoMusic {
song?: string | MusicEntry;
artist?: string | MusicEntry;
@ -85,6 +90,8 @@ interface VideoOptions {
discretionAdvised?: boolean;
/**
* Gives info about music content in that video.
*
* The property names of VideoMusic change depending on your region's language.
*/
music?: VideoMusic[];
/**