discord-leveling-super
Version:
Easy and customizable leveling framework for your Discord bot.
37 lines (30 loc) • 937 B
TypeScript
/**
* Options object for an 'Leveling.utils.checkOptions' method.
*/
declare interface CheckerOptions {
/**
* Allows the method to ignore the options with invalid types. Default: false.
*/
ignoreInvalidTypes?: boolean
/**
* Allows the method to ignore the unspecified options. Default: false.
*/
ignoreUnspecifiedOptions?: boolean
/**
* Allows the method to ignore the unexisting options. Default: false.
*/
ignoreInvalidOptions?: boolean
/**
* Allows the method to show all the problems in the console. Default: false.
*/
showProblems?: boolean
/**
* Allows the method to send the result in the console. Default: false.
*/
sendLog?: boolean
/**
* Allows the method to send the result if no problems were found. Default: false
*/
sendSuccessLog?: boolean
}
export = CheckerOptions