UNPKG

discord-bot-cli

Version:

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

10 lines (9 loc) 406 B
/** @category Definition */ export interface ThrottlingDefinition { /** Number of times the command can be used. */ readonly count: number; /** Duration after which the usage count is reset in second. */ readonly duration: number; /** If set to true, user with administrator permission are also affected by this throttling. (default is false) */ readonly includeAdmins?: boolean; }