mirror of
https://github.com/maciejpedzich/spotifyplaylistarchive.com.git
synced 2024-11-09 23:13:01 +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;
|
|
}
|