mrmBot-Matrix/commands/image-editing/sharpen.js

17 lines
393 B
JavaScript

import ImageCommand from "../../classes/imageCommand.js";
class SharpenCommand extends ImageCommand {
static category = "image-editing"
params = {
sharp: true
};
static description = "Sharpens an image";
static aliases = ["sharp"];
static noImage = "You need to provide an image/GIF to sharpen!";
static command = "blur";
}
export default SharpenCommand;