Fixed Typings

This commit is contained in:
Atari Tom 2022-04-08 10:29:57 -04:00
parent d90a95f4e0
commit 53f379215b

View File

@ -2,7 +2,7 @@ import { YouTubeChannel } from './Channel';
import { YouTubeThumbnail } from './Thumbnail';
interface VideoMusic {
song?: MusicEntry;
song?: string | MusicEntry;
artist?: string | MusicEntry;
album?: string;
writers?: string;
@ -11,7 +11,7 @@ interface VideoMusic {
interface MusicEntry {
text?: string;
url?: string | undefined;
url?: string;
}
interface VideoOptions {