discord-leveling-super
Version:
Easy and customizable leveling framework for your Discord bot.
16 lines (14 loc) • 360 B
TypeScript
/**
* Updater options object.
*/
declare interface UpdaterOptions {
/**
* Sends the update state message in console on start. Default: true.
*/
checkUpdates?: boolean
/**
* Sends the message in console on start if module is up to date. Default: true.
*/
upToDateMessage?: boolean
}
export = UpdaterOptions