2021-08-19 14:19:14 +00:00
|
|
|
import ImageCommand from "../../classes/imageCommand.js";
|
2021-05-04 21:28:34 +00:00
|
|
|
|
|
|
|
class UncaptionCommand extends ImageCommand {
|
|
|
|
static description = "Removes the caption from an image";
|
|
|
|
|
2022-01-26 18:53:20 +00:00
|
|
|
static noImage = "You need to provide an image/GIF to uncaption!";
|
2021-05-04 21:28:34 +00:00
|
|
|
static command = "uncaption";
|
|
|
|
}
|
|
|
|
|
2022-01-26 18:53:20 +00:00
|
|
|
export default UncaptionCommand;
|