Skip to content

Commit

Permalink
Fix queue missing on playerjson type
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomato6966 committed Sep 24, 2024
1 parent 227e8fd commit 50d373f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/structures/Types/Player.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import type { DestroyReasons } from "../Constants";

import type { LavalinkNode } from "../Node";
import type { EQBand, FilterData, LavalinkFilterData } from "./Filters";
import { StoredQueue } from "./Queue";

import type { Track, UnresolvedTrack } from "./Track";
import type { Base64, LavalinkPlayerVoiceOptions } from "./Utils";

Expand Down Expand Up @@ -49,6 +51,8 @@ export interface PlayerJson {
nodeId?: string;
/** The SessionId of the node */
nodeSessionId?: string;
/** The stored queue */
queue?: StoredQueue;
}

export type RepeatMode = "queue" | "track" | "off";
Expand Down

0 comments on commit 50d373f

Please sign in to comment.