forgot to build oops

This commit is contained in:
Darius
2026-01-28 22:53:57 +01:00
parent 20e94a7e0e
commit 862401fa9b
2 changed files with 18 additions and 3 deletions

19
dist/tidal.d.ts vendored
View File

@@ -1,14 +1,29 @@
export type TidalSong = {
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;
};
export type TidalVolume = {
export type TidalPutVolume = {
volume: number;
};
//# sourceMappingURL=tidal.d.ts.map