mirror of
https://github.com/maciejpedzich/spotifyplaylistarchive.com.git
synced 2024-11-10 07:13:03 +01:00
11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
|
import { Track } from './track';
|
||
|
|
||
|
export interface Cumulative {
|
||
|
date_first_scraped: string;
|
||
|
description: string;
|
||
|
name: string;
|
||
|
published_playlist_ids: string[];
|
||
|
tracks: Track[];
|
||
|
url: string;
|
||
|
}
|