spotifyplaylistarchive.com/models/cumulative.ts

11 lines
205 B
TypeScript
Raw Normal View History

2022-07-06 14:01:01 +02:00
import { Track } from './track';
export interface Cumulative {
date_first_scraped: string;
description: string;
name: string;
published_playlist_ids: string[];
tracks: Track[];
url: string;
}