import type { IThumbUrls, ICardInfo } from '../types/index.d.ts'; type Thumb = { videoMd5: string; thumbNum: number; urls: IThumbUrls; }; export interface IPlaylistInfoType extends ICardInfo { guid: string; created: number; updated: number; id: string; title: string; identityGuid: string; username: string; playlistType: "public" | "private"; niche: string; domain: string; thumbs: Thumb[]; videosCount: number; firstVideoId: string; searchTags: string[]; views: number; likes: number; dislikes: number; availableVideos: number; };