Add files via upload

This commit is contained in:
2024-08-07 16:00:41 +02:00
committed by GitHub
parent 81760c7ddc
commit 738250d7a1
14 changed files with 176 additions and 126 deletions
+15 -8
View File
@@ -1,17 +1,24 @@
type startParameters = {
imvci: number;
igi: number;
igv: number;
type: string;
VoiceChannelID: number;
GuildID: number;
VoiceAdapter: number;
Type: string;
Resource: string;
};
type stopParameter = {
igi: number;
GuildID: number;
};
declare function start({ imvci, igi, igv, type, Resource, }: startParameters): void;
type maxListenerParameter = {
GuildID: number;
MaxListeners: number;
};
declare function stop({ igi, }: stopParameter): void;
declare function start({ VoiceChannelID, GuildID, VoiceAdapter, Type, Resource, }: startParameters): void;
export { start, stop };
declare function stop({ GuildID, }: stopParameter): void;
declare function setMaxListeners({ GuildID, MaxListeners, }: maxListenerParameter): void;
export { setMaxListeners, start, stop };