ts3-ladon
Version:
Ladon is a versatile framework designed for creating powerful TS3 (TeamSpeak 3) query bots. With Ladon, developers can effortlessly implement commands, handle events, and utilize a variety of utility functions to enhance their bot's capabilities. Whether
9 lines (8 loc) • 341 B
TypeScript
import { TeamSpeakClient } from "ts3-nodejs-library";
import { ICommand } from "./ICommand";
declare class Command {
private static _commandList;
static callCommand(connectionId: string, client: TeamSpeakClient, text: string): void;
static loadCommands(connectionId: string, allCommands: ICommand[]): void;
}
export { Command };