Don't include type files in build

This commit is contained in:
Tarrgon
2025-06-02 08:53:20 -04:00
parent d40dac9a96
commit b2e1b4beee
6 changed files with 0 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { Client, ContextMenuCommandBuilder, SlashCommandBuilder } from 'discord.js';
import { Handler } from './handler';
export type CommandBuilder = ContextMenuCommandBuilder | SlashCommandBuilder;
export interface Command extends Handler {
data: CommandBuilder | ((client: Client) => Promise<CommandBuilder>);
guilds?: string[];
}