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