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

6
typings/index.d.ts vendored
View File

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