From da04d38069c4902463f9fc6206b48978b481002b Mon Sep 17 00:00:00 2001 From: Atari Tom Date: Fri, 8 Apr 2022 11:18:06 -0400 Subject: [PATCH] Added footnote to music property --- play-dl/YouTube/classes/Video.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/play-dl/YouTube/classes/Video.ts b/play-dl/YouTube/classes/Video.ts index e5009eb..2d6c3da 100644 --- a/play-dl/YouTube/classes/Video.ts +++ b/play-dl/YouTube/classes/Video.ts @@ -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[]; /**