UNPKG

djs-systems

Version:

The simplest way to build complex Discord bots.

14 lines (13 loc) 500 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.bumpSystem = void 0; const error_1 = require("../error"); const bumpReminder_1 = require("../bumpReminder"); /** * @deprecated Use {@link bumpReminder()} */ async function bumpSystem(client, message, options) { (0, error_1.Deprecated)({ desc: 'bumpSystem() is now bumpReminder()' }); return await (0, bumpReminder_1.bumpReminder)(client, message, options); } exports.bumpSystem = bumpSystem;