discord-bot-cli
Version:
An easy way to build a command-based discord bot with discord.js.
41 lines (40 loc) • 1.09 kB
TypeScript
declare const cmd: import("../models/CommandData").CommandData<{
devOnly: true;
description: string;
subs: {
reload: {
aliases: string[];
description: string;
args: {
command: {
type: "string";
description: string;
};
};
};
throttling: {
aliases: string[];
description: string;
rest: {
type: "string";
name: string;
};
flags: {
reset: {
type: "boolean";
defaultValue: false;
shortcut: "r";
description: string;
};
"reset-all": {
type: "boolean";
defaultValue: false;
shortcut: "R";
description: string;
};
};
examples: string[];
};
};
}, Record<string, unknown>>;
export default cmd;