sdhandler
Version:
A discord.js command handler
16 lines (15 loc) • 464 B
TypeScript
import type { GatewayIntentBits, GatewayIntentsString } from "discord.js";
export declare type SdhandlerOptions = {
token: string;
intents: GatewayIntentBits[] | GatewayIntentsString[];
testOnly?: boolean;
commandsDir?: string;
eventsDir?: string;
buttonsDir?: string;
guildId?: string[];
prefix?: string[];
commandsPath?: string;
eventsPath?: string;
buttonsPath?: string;
compileFolder?: string;
};