fix: add types to playlist

This commit is contained in:
Artemy 2023-08-10 12:05:59 +03:00
parent 5465963650
commit 963be51741
3 changed files with 12 additions and 6 deletions

View file

@ -128,16 +128,22 @@ export interface NextPageChannel {
}
export interface Playlist {
url: string;
bannerUrl: string;
name: string;
nextpage: string;
relatedStreams: Video[];
thumbnailUrl: string;
uploader: string;
thumbnailUrl?: string;
uploader?: string;
uploaderAvatar: string;
uploaderUrl: string;
videos: number;
type?: string;
thumbnail?: string;
uploaderName?: string;
uploaderVerified?: boolean;
playlistType?: string;
}
export interface NextPagePlaylist {