Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-17 21:38:41 +01:00
parent 2b3ee60633
commit 079227ee29
13 changed files with 127 additions and 3 deletions

14
dist/tidal.d.ts vendored 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;
};
//# sourceMappingURL=tidal.d.ts.map