import { Collection } from "discord.js"; import { PrismaClient } from "@prisma/client"; import { BaseCommand, BaseEntry, BaseGuildCache } from "../"; export default class SlashCommandDeployer

> { private readonly guildId; private readonly commands; constructor(guildId: string, commandFiles: Collection>); /** * Deploys all commands to the Discord REST API */ deploy(): Promise; }