UNPKG

noblox-bonk

Version:
26 lines (22 loc) 560 B
// Includes const changeRank = require('./changeRank.js').func // Args exports.required = ['group', 'target'] exports.optional = ['jar'] // Docs /** * 🔐 Demote a user. * @category Group * @alias demote * @param {number} group - The id of the group. * @param {number} target - The userId of the user being demoted. * @returns {Promise<ChangeRankResult>} * @example const noblox = require("noblox.js") * // Login using your cookie * noblox.demote(1, 2) **/ // Define exports.func = function (args) { args.change = -1 return changeRank(args) }