xyter/src/interfaces/Command.ts
2022-05-29 19:35:42 +02:00

7 lines
167 B
TypeScript

import { SlashCommandBuilder } from "@discordjs/builders";
export interface ICommand {
builder: SlashCommandBuilder;
moduleData: any;
execute: Promise<void>;
}