11 lines
318 B
JavaScript
11 lines
318 B
JavaScript
import ImageCommand from "../../classes/imageCommand.js";
|
|
|
|
class CropCommand extends ImageCommand {
|
|
static category = "image-editing"
|
|
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;
|