mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2025-04-19 11:12:30 +02:00
28 lines
598 B
TypeScript
28 lines
598 B
TypeScript
import { Artist } from "./Artist";
|
|
import { ServiceLinks } from "./ServiceLinks";
|
|
|
|
export interface WhippedResult {
|
|
status: string;
|
|
data: {
|
|
item: {
|
|
type: string;
|
|
id: number;
|
|
path: string;
|
|
name: string;
|
|
url: string;
|
|
sourceUrl: string;
|
|
sourceCountry: string;
|
|
releaseDate: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
refreshedAt: string;
|
|
image: string;
|
|
isrc: string;
|
|
isExplicit: boolean;
|
|
links: { [key: string]: ServiceLinks[] };
|
|
linksCountries: string[];
|
|
artists: Artist[];
|
|
};
|
|
};
|
|
}
|