mirror of
https://github.com/janishutz/MusicPlayerV2.git
synced 2025-11-25 04:54:23 +00:00
18 lines
361 B
TypeScript
18 lines
361 B
TypeScript
export interface Room {
|
|
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;
|
|
} |