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

11 lines
271 B
JavaScript
Raw Normal View History

import ImageCommand from "../../classes/imageCommand.js";
class CropCommand extends ImageCommand {
static description = "Crops an image to 1:1";
static noImage = "You need to provide an image/GIF to crop!";
static command = "crop";
}
export default CropCommand;