UNPKG

yandex-music

Version:

Creative and progressive Node.js framework for applications that interact with yandex music

33 lines 857 B
import { CoverPlaylist, Owner } from "../common"; import { TrackInterface as Track } from "../tracks/tracks.interfaces"; export interface PlaylistInterface { owner: Owner; playlistUuid: string; available: boolean; uid: number; kind: number; title: string; revision: number; snapshot: number; trackCount: number; visibility: string; collective: boolean; created: string; modified: string; isBanner: boolean; isPremiere: boolean; durationMs: number; cover: CoverPlaylist; ogImage: string; tracks: Array<{ id: number; albumId: number; timestamp: string; }>; tags: Array<any>; } export interface PlaylistsRecommendations { batchId: string; tracks: Array<Track>; } //# sourceMappingURL=playlist.interfaces.d.ts.map