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