djsify
Version:
A powerful and flexible Discord bot framework for building feature-rich Discord bots with ease. Supports message commands, slash commands, and button interactions.
17 lines (12 loc) • 585 B
text/typescript
import { SlashCommandFile } from './type/SlashCommandFile.js';
import { ButtonCommandFile } from './type/ButtonCommandFile.js';
import { MessageCommandFile } from './type/MessageCommandFile.js';
import { Ai } from './utils/ai.js';
import { SlashCommand, OptionType } from './builders/SlashCommand.js';
import { Colors } from './utils/Colors.js';
import djsClient from './Client/setup.js';
export { SlashCommandFile, ButtonCommandFile, MessageCommandFile };
export { SlashCommand, OptionType };
export { Ai, Colors };
export { djsClient };
export default djsClient;