chore: release v3.4.2

This commit is contained in:
Elysia
2024-10-29 15:51:41 +07:00
parent f13e0e5a5a
commit fb48a0dc7f
3 changed files with 4 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{ {
"name": "discord.js-selfbot-v13", "name": "discord.js-selfbot-v13",
"version": "3.4.1", "version": "3.4.2",
"description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]", "description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
"main": "./src/index.js", "main": "./src/index.js",
"types": "./typings/index.d.ts", "types": "./typings/index.d.ts",

6
typings/index.d.ts vendored
View File

@@ -1123,10 +1123,8 @@ export class FFmpegHandler extends EventEmitter {
public isEnableAudio: boolean; public isEnableAudio: boolean;
public userId: Snowflake; public userId: Snowflake;
public sendPayloadToFFmpeg(payload: Buffer, isAudio?: boolean): void; public sendPayloadToFFmpeg(payload: Buffer, isAudio?: boolean): void;
public on(event: 'ready', listener: () => void): this; public on(event: 'ready' | 'closed', listener: () => void): this;
public once(event: 'ready', listener: () => void): this; public once(event: 'ready' | 'closed', listener: () => void): this;
public on(event: 'closed', listener: () => void): this;
public once(event: 'closed', listener: () => void): this;
public destroy(): void; public destroy(): void;
} }