11 lines
No EOL
323 B
JavaScript
11 lines
No EOL
323 B
JavaScript
const ImageCommand = require("../../classes/imageCommand.js");
|
|
|
|
class PixelateCommand extends ImageCommand {
|
|
static description = "Pixelates an image";
|
|
static aliases = ["pixel", "small"];
|
|
|
|
static noImage = "You need to provide an image to pixelate!";
|
|
static command = "resize";
|
|
}
|
|
|
|
module.exports = PixelateCommand; |