26 lines
500 B
TypeScript
26 lines
500 B
TypeScript
export type TidalGetCurrent = {
|
|
title: string;
|
|
artists: string;
|
|
artistsArray: string[];
|
|
album: string;
|
|
playingFrom: string;
|
|
status: "playing" | "paused";
|
|
url: string;
|
|
current: string;
|
|
currentInSeconds: number;
|
|
duration: string;
|
|
durationInSeconds: number;
|
|
image: string;
|
|
icon: string;
|
|
localAlbumArt: string;
|
|
favorite: boolean;
|
|
trackId: string;
|
|
volume: number;
|
|
player: {
|
|
status: "playing" | "paused";
|
|
shuffle: boolean;
|
|
repeat: "all" | "single" | "none";
|
|
};
|
|
artist: string;
|
|
};
|