docs: Add missing @extends (#9028)

This commit is contained in:
Jiralite
2023-01-10 09:51:10 +00:00
committed by GitHub
parent 11d010f177
commit 1779e1ba7e
10 changed files with 12 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ const UNRESUMABLE_CLOSE_CODES = [
* The WebSocket manager for this client.
* <info>This class forwards raw dispatch events,
* read more about it here {@link https://discord.com/developers/docs/topics/gateway}</info>
* @extends EventEmitter
* @extends {EventEmitter}
*/
class WebSocketManager extends EventEmitter {
constructor(client) {

View File

@@ -17,6 +17,7 @@ try {
/**
* Represents a Shard's WebSocket connection
* @extends {EventEmitter}
*/
class WebSocketShard extends EventEmitter {
constructor(manager, id) {