mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-14 10:33:30 +01:00
feat(docgen): proper event parsing for typescript
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
/* eslint-disable @typescript-eslint/method-signature-style */
|
||||
import { EventEmitter } from 'node:events';
|
||||
import { VoiceOpcodes } from 'discord-api-types/voice/v4';
|
||||
import { TypedEmitter } from 'tiny-typed-emitter';
|
||||
import type { CloseEvent } from 'ws';
|
||||
import { VoiceUDPSocket } from './VoiceUDPSocket';
|
||||
import { VoiceWebSocket } from './VoiceWebSocket';
|
||||
import * as secretbox from '../util/Secretbox';
|
||||
import { Awaited, noop } from '../util/util';
|
||||
import { noop } from '../util/util';
|
||||
|
||||
// The number of audio channels required by Discord
|
||||
const CHANNELS = 2;
|
||||
@@ -150,11 +151,16 @@ export interface ConnectionData {
|
||||
*/
|
||||
const nonce = Buffer.alloc(24);
|
||||
|
||||
export interface NetworkingEvents {
|
||||
debug: (message: string) => Awaited<void>;
|
||||
error: (error: Error) => Awaited<void>;
|
||||
stateChange: (oldState: NetworkingState, newState: NetworkingState) => Awaited<void>;
|
||||
close: (code: number) => Awaited<void>;
|
||||
export interface Networking extends EventEmitter {
|
||||
/**
|
||||
* Debug event for Networking.
|
||||
*
|
||||
* @event
|
||||
*/
|
||||
on(event: 'debug', listener: (message: string) => void): this;
|
||||
on(event: 'error', listener: (error: Error) => void): this;
|
||||
on(event: 'stateChange', listener: (oldState: NetworkingState, newState: NetworkingState) => void): this;
|
||||
on(event: 'close', listener: (code: number) => void): this;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -195,7 +201,7 @@ function randomNBit(n: number) {
|
||||
/**
|
||||
* Manages the networking required to maintain a voice connection and dispatch audio packets
|
||||
*/
|
||||
export class Networking extends TypedEmitter<NetworkingEvents> {
|
||||
export class Networking extends EventEmitter {
|
||||
private _state: NetworkingState;
|
||||
|
||||
/**
|
||||
@@ -274,12 +280,6 @@ export class Networking extends TypedEmitter<NetworkingEvents> {
|
||||
this._state = newState;
|
||||
this.emit('stateChange', oldState, newState);
|
||||
|
||||
/**
|
||||
* Debug event for Networking.
|
||||
*
|
||||
* @event Networking#debug
|
||||
* @type {string}
|
||||
*/
|
||||
this.debug?.(`state change:\nfrom ${stringifyState(oldState)}\nto ${stringifyState(newState)}`);
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import { createSocket, Socket } from 'node:dgram';
|
||||
import { EventEmitter } from 'node:events';
|
||||
import { isIPv4 } from 'node:net';
|
||||
import { TypedEmitter } from 'tiny-typed-emitter';
|
||||
import type { Awaited } from '../util/util';
|
||||
|
||||
/**
|
||||
* Stores an IP address and port. Used to store socket details for the local client as well as
|
||||
@@ -17,13 +16,6 @@ interface KeepAlive {
|
||||
timestamp: number;
|
||||
}
|
||||
|
||||
export interface VoiceUDPSocketEvents {
|
||||
error: (error: Error) => Awaited<void>;
|
||||
close: () => Awaited<void>;
|
||||
debug: (message: string) => Awaited<void>;
|
||||
message: (message: Buffer) => Awaited<void>;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parses the response from Discord to aid with local IP discovery.
|
||||
*
|
||||
@@ -61,7 +53,7 @@ const MAX_COUNTER_VALUE = 2 ** 32 - 1;
|
||||
/**
|
||||
* Manages the UDP networking for a voice connection.
|
||||
*/
|
||||
export class VoiceUDPSocket extends TypedEmitter<VoiceUDPSocketEvents> {
|
||||
export class VoiceUDPSocket extends EventEmitter {
|
||||
/**
|
||||
* The underlying network Socket for the VoiceUDPSocket.
|
||||
*/
|
||||
|
||||
@@ -1,28 +1,31 @@
|
||||
/* eslint-disable @typescript-eslint/method-signature-style */
|
||||
import { EventEmitter } from 'node:events';
|
||||
import { VoiceOpcodes } from 'discord-api-types/voice/v4';
|
||||
import { TypedEmitter } from 'tiny-typed-emitter';
|
||||
import WebSocket, { MessageEvent } from 'ws';
|
||||
import type { Awaited } from '../util/util';
|
||||
|
||||
/**
|
||||
* Debug event for VoiceWebSocket.
|
||||
*
|
||||
* @event VoiceWebSocket#debug
|
||||
* @type {string}
|
||||
*/
|
||||
|
||||
export interface VoiceWebSocketEvents {
|
||||
error: (error: Error) => Awaited<void>;
|
||||
open: (event: WebSocket.Event) => Awaited<void>;
|
||||
close: (event: WebSocket.CloseEvent) => Awaited<void>;
|
||||
debug: (message: string) => Awaited<void>;
|
||||
packet: (packet: any) => Awaited<void>;
|
||||
export interface VoiceWebSocket extends EventEmitter {
|
||||
on(event: 'error', listener: (error: Error) => void): this;
|
||||
on(event: 'open', listener: (event: WebSocket.Event) => void): this;
|
||||
on(event: 'close', listener: (event: WebSocket.CloseEvent) => void): this;
|
||||
/**
|
||||
* Debug event for VoiceWebSocket.
|
||||
*
|
||||
* @event
|
||||
*/
|
||||
on(event: 'debug', listener: (message: string) => void): this;
|
||||
/**
|
||||
* Packet event.
|
||||
*
|
||||
* @event
|
||||
*/
|
||||
on(event: 'packet', listener: (packet: any) => void): this;
|
||||
}
|
||||
|
||||
/**
|
||||
* An extension of the WebSocket class to provide helper functionality when interacting
|
||||
* with the Discord Voice gateway.
|
||||
*/
|
||||
export class VoiceWebSocket extends TypedEmitter<VoiceWebSocketEvents> {
|
||||
export class VoiceWebSocket extends EventEmitter {
|
||||
/**
|
||||
* The current heartbeat interval, if any.
|
||||
*/
|
||||
@@ -122,12 +125,6 @@ export class VoiceWebSocket extends TypedEmitter<VoiceWebSocketEvents> {
|
||||
this.ping = this.lastHeartbeatAck - this.lastHeartbeatSend;
|
||||
}
|
||||
|
||||
/**
|
||||
* Packet event.
|
||||
*
|
||||
* @event VoiceWebSocket#packet
|
||||
* @type {any}
|
||||
*/
|
||||
this.emit('packet', packet);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user