This commit is contained in:
Darius
2025-11-17 21:22:16 +01:00
commit 17313da7f9
8 changed files with 286 additions and 0 deletions

14
src/tidal.ts Normal file
View File

@@ -0,0 +1,14 @@
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;
};