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: "string"; requirements: string; required: boolean; }[]; }; only: CommandType; middleware: IsAdminMiddleware, BaseEntry, BaseGuildCache, BaseEntry, unknown>>[]; condition(): void; converter(): void; execute(helper: CommandHelper): Promise; }