More fixes, sdk stubs need update for this to work

This commit is contained in:
2025-09-28 14:59:05 +02:00
parent 84b640ee5e
commit 3e13a4ebf5
5 changed files with 508 additions and 518 deletions
+19 -14
View File
@@ -1,18 +1,23 @@
export interface Room {
playbackStatus: boolean;
playbackStart: number;
playlist: Song[];
playlistIndex: number;
roomName: string;
roomToken: string;
ownerUID: string;
useAntiTamper: boolean;
'playbackStatus': boolean;
'playbackStart': number;
'playlist': Song[];
'playlistIndex': number;
'roomName': string;
'roomToken': string;
'ownerUID': string;
'useAntiTamper': boolean;
}
export interface Song {
title: string;
artist: string;
duration: number;
cover: string;
additionalInfo?: string;
}
'title': string;
'artist': string;
'duration': number;
'cover': string;
'additionalInfo'?: string;
}
export interface SocketData {
[key: string]: Room;
}