mirror of
https://github.com/maciejpedzich/spotifyplaylistarchive.com.git
synced 2024-11-09 23:13:01 +01:00
14 lines
266 B
TypeScript
14 lines
266 B
TypeScript
|
import { Owner } from './owner';
|
||
|
import { Track } from './track';
|
||
|
|
||
|
export interface Playlist {
|
||
|
description: string;
|
||
|
num_followers: number;
|
||
|
original_name: string;
|
||
|
owner: Owner;
|
||
|
snapshot_id: string;
|
||
|
tracks: Track[];
|
||
|
unique_name: string;
|
||
|
url: string;
|
||
|
}
|