import { PrismaClient } from "@prisma/client"; import { BaseCommand, BaseEntry, BaseGuildCache, CommandHelper, CommandType, IsAdminMiddleware } from "../../.."; export default class
> extends BaseCommand
{
defer: boolean;
ephemeral: boolean;
data: {
description: string;
options: {
name: string;
description: string;
type: "channel";
requirements: string;
required: boolean;
}[];
};
only: CommandType;
middleware: IsAdminMiddleware ): Promise