discord-bot-cli
Version:
An easy way to build a command-based discord bot with discord.js.
11 lines (10 loc) • 319 B
TypeScript
import { ParsableTypeName } from "../ParsableType";
/** @category Definition */
export interface RestDefinition {
/** Type(s) of the rest. */
type: ParsableTypeName | ParsableTypeName[];
/** Name to diplay in help. */
name: string;
/** Description to display in help. */
description?: string;
}