kiutils
Version:
🎑 (Library) an Javascript library that provide various utilities, including Image manipulation tools, Discord-related utilities, and a logger.
22 lines • 879 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ProgressBarType = exports.BackgroundType = exports.StatusType = void 0;
var StatusType;
(function (StatusType) {
StatusType["ONLINE"] = "online";
StatusType["DND"] = "dnd";
StatusType["IDLE"] = "idle";
StatusType["OFFLINE"] = "offline";
StatusType["STREAMING"] = "streaming";
})(StatusType || (exports.StatusType = StatusType = {}));
var BackgroundType;
(function (BackgroundType) {
BackgroundType["IMAGE"] = "image";
BackgroundType["COLOR"] = "color";
})(BackgroundType || (exports.BackgroundType = BackgroundType = {}));
var ProgressBarType;
(function (ProgressBarType) {
ProgressBarType["COLOR"] = "color";
ProgressBarType["GRADIENT"] = "gradient";
})(ProgressBarType || (exports.ProgressBarType = ProgressBarType = {}));
//# sourceMappingURL=enums.js.map
;