spotifyplaylistarchive.com/src/models/playlist-snapshot.ts
2023-01-07 22:23:17 +01:00

14 lines
281 B
TypeScript

import type { User } from './user';
import type { Track } from './track';
export interface PlaylistSnapshot {
description: string;
num_followers: number;
original_name: string;
owner: User;
snapshot_id: string;
tracks: Track[];
unique_name: string;
url: string;
}