Some changes

This commit is contained in:
killer069
2021-11-18 15:48:33 +05:30
parent 81e6bc0092
commit 241884d69c
171 changed files with 682 additions and 669 deletions

View File

@@ -2,9 +2,21 @@ import { request } from '../Request';
import { SpotifyDataOptions } from '.';
interface SpotifyTrackAlbum {
/**
* Spotify Track Album name
*/
name: string;
/**
* Spotify Track Album url
*/
url: string;
/**
* Spotify Track Album id
*/
id: string;
/**
* Spotify Track Album release date
*/
release_date: string;
release_date_precision: string;
total_tracks: number;