More stuff
This commit is contained in:
+2
-2
@@ -1,4 +1,4 @@
|
||||
import {Song, PlayingSong} from "./dataTypes";
|
||||
import {Song, PlayingSong, QueuedSong} from "./dataTypes";
|
||||
|
||||
export type StuenMessages = ListenerLeft | ListenerList | ListenerJoined | SendChatMessage | SearchSong | SearchSongResult | Join | QueueSong | CurrentQueue | CurrentSong | UnqueueSong | ReorderSong;
|
||||
export abstract class StuenMessage {
|
||||
@@ -62,7 +62,7 @@ export class QueueSong extends StuenMessage {
|
||||
}
|
||||
|
||||
export class CurrentQueue extends StuenMessage {
|
||||
constructor(public songs: Song[]) {
|
||||
constructor(public songs: QueuedSong[]) {
|
||||
super('CurrentQueue');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user