This commit is contained in:
Snowflake107 2021-04-21 14:59:04 +05:45
parent 32a7be23a1
commit 3e5f911ce9

View file

@ -25,13 +25,13 @@ import YouTube from 'youtube-sr';
const SoundCloud = new SoundCloudClient();
/**
* The Player class
* @extends {EventEmitter}
*/
export class Player extends EventEmitter {
public client: Client;
public options: PlayerOptionsType;
/**
* The audio filters
*/
public filters: typeof AudioFilters;
/**
@ -91,10 +91,6 @@ export class Player extends EventEmitter {
}
}
/**
* The audio filters
* @returns {Object}
*/
static get AudioFilters(): typeof AudioFilters {
return AudioFilters;
}