interface SocketMessage {
    id: string;
    sender: string;
    timestamp: number;
    type: "play" | "queue";
    users: string[];
}

Hierarchy (view full)

Properties

id: string
sender: string
timestamp: number
type: "play" | "queue"
users: string[]