import type { PlaylistType } from '../runtime/constants/playlist-type'; import type { IThumbUrls } from './thumbs-urls'; export interface IPlaylistCard { created: number; id: string; name: string; username: string; playlistType: PlaylistType; thumbUrls: IThumbUrls[]; videosCount: number; firstVideoId?: string; searchTags?: string[]; views?: number; likes?: number; dislikes?: number; /** Новинки с прошлого захода — бейдж «3 new» (страница подписок) */ newCount?: number; }