11 lines
376 B
JavaScript
11 lines
376 B
JavaScript
|
const ImageCommand = require("../../classes/imageCommand.js");
|
||
|
|
||
|
class JPEGCommand extends ImageCommand {
|
||
|
static description = "Adds max JPEG compression to an image";
|
||
|
static aliases = ["needsmorejpeg", "jpegify", "magik2", "morejpeg", "jpg"];
|
||
|
|
||
|
static noImage = "you need to provide an image to add more JPEG!";
|
||
|
static command = "jpeg";
|
||
|
}
|
||
|
|
||
|
module.exports = JPEGCommand;
|