discord-player 6.6.9-dev.0 → 6.6.9-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -1
- package/dist/index.js +11 -9
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -452,8 +452,9 @@ declare class GuildQueuePlayerNode<Meta = unknown> {
|
|
|
452
452
|
/**
|
|
453
453
|
* Remove the given track from queue
|
|
454
454
|
* @param track The track to remove
|
|
455
|
+
* @param emitEvent Whether or not to emit the event @defaultValue true
|
|
455
456
|
*/
|
|
456
|
-
remove(track: TrackResolvable): Track<unknown> | null;
|
|
457
|
+
remove(track: TrackResolvable, emitEvent?: boolean): Track<unknown> | null;
|
|
457
458
|
/**
|
|
458
459
|
* Jump to specific track on the queue
|
|
459
460
|
* @param track The track to jump to without removing other tracks
|