Files
2024-10-26 20:33:18 +08:00

9 lines
186 B
TypeScript

import { SlashCommandBuilder } from "discord.js";
export interface Command {
permissions?: string[];
cooldown?: number;
data: SlashCommandBuilder;
execute(...args: any): any;
}