UNPKG

dressed

Version:

A sleek, serverless-ready Discord bot framework.

11 lines (10 loc) 334 B
import type { CommandData, ComponentData, EventData, ServerConfig } from "../../types/config.ts"; /** * Builds the bot imports and other variables. */ export default function build(config?: ServerConfig): Promise<{ commands: CommandData[]; components: ComponentData[]; events: EventData[]; config: ServerConfig; }>;