11 lines
No EOL
323 B
JavaScript
11 lines
No EOL
323 B
JavaScript
import ImageCommand from "../../classes/imageCommand.js";
|
|
|
|
class InvertCommand extends ImageCommand {
|
|
static description = "Inverts an image";
|
|
static aliases = ["inverse", "negate", "negative"];
|
|
|
|
static noImage = "You need to provide an image to invert!";
|
|
static command = "invert";
|
|
}
|
|
|
|
export default InvertCommand; |