fix(Player): add missing event

This commit is contained in:
DevAndromeda 2021-08-05 14:37:28 +05:45
parent 6b68c24d22
commit a617e5f750
No known key found for this signature in database
GPG key ID: FA40E3EC5CB6DCD6

View file

@ -317,6 +317,7 @@ export interface PlayerEvents {
trackAdd: (queue: Queue, track: Track) => any;
tracksAdd: (queue: Queue, track: Track[]) => any;
trackStart: (queue: Queue, track: Track) => any;
trackEnd: (queue: Queue, track: Track) => any;
}
/* eslint-enable @typescript-eslint/no-explicit-any */