mirror of
https://github.com/maciejpedzich/spotifyplaylistarchive.com.git
synced 2024-11-13 00:33:03 +01:00
14 lines
206 B
TypeScript
14 lines
206 B
TypeScript
import { Owner } from './owner';
|
|
|
|
export interface Track {
|
|
added_at: string;
|
|
album: {
|
|
name: string;
|
|
url: string;
|
|
};
|
|
artists: Owner[];
|
|
duration_ms: number;
|
|
name: string;
|
|
url: string;
|
|
}
|