UNPKG

discord-bot-cli

Version:

An easy way to build a command-based discord bot with discord.js.

7 lines (6 loc) 293 B
import { ParsableDefinition } from "./ParsableDefinition"; /** @category Definition */ export declare type ArgDefinition = ParsableDefinition & { /** If set to true, this argument can be omitted. In this case defaultValue is used. (default is false) */ readonly optional?: boolean; };