14 lines
293 B
TypeScript
14 lines
293 B
TypeScript
export type TidalSong = {
|
|
title: string;
|
|
artists: string;
|
|
album: string;
|
|
playingFrom: string;
|
|
status: "playing" | "paused";
|
|
url: string;
|
|
current: string;
|
|
duration: string;
|
|
};
|
|
export type TidalVolume = {
|
|
volume: number;
|
|
};
|
|
//# sourceMappingURL=tidal.d.ts.map
|