djs-systems
Version:
The simplest way to build complex Discord bots.
14 lines (13 loc) • 487 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.giveawaySystem = void 0;
const error_1 = require("../error");
const giveaway_1 = require("../giveaway");
/**
* @deprecated Use {@link giveaway()}
*/
async function giveawaySystem(msgOrInt, options = {}) {
(0, error_1.Deprecated)({ desc: 'giveawaySystem() is now giveaway()' });
return await (0, giveaway_1.giveaway)(msgOrInt, options);
}
exports.giveawaySystem = giveawaySystem;