Skip to content

Commit

Permalink
types(LavalinkPlayer): use nullish for track
Browse files Browse the repository at this point in the history
  • Loading branch information
Fab1o0107 committed Dec 21, 2023
1 parent b529692 commit f51d339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node/Rest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export interface RoutePlanner {

export interface LavalinkPlayer {
guildId: string;
track?: Track;
track: Track | null;
volume: number;
paused: boolean;
state: LavalinkPlayerState;
Expand Down

0 comments on commit f51d339

Please sign in to comment.