UNPKG

xopbot

Version:

XOPBOT Is A Multipurpose Bot With Over 200+ Commands That Make You Love The Bot!

13 lines (11 loc) 270 B
import Client from "../client"; import { Message } from "discord.js"; interface Run { (client: Client, message: Message, args: string[0]) }; export interface Command { name: string; description?: string; aliases?: string[]; run: Run; };