import DiscordInteractionCommand from "../../util/DiscordInteractionCommand"; import { ChatInputCommandInteraction } from "discord.js"; export default class Ping extends DiscordInteractionCommand { constructor() { super("partner", "Manipulates partner information."); } public async execute(interaction: ChatInputCommandInteraction): Promise { if (interaction.options?.getSubcommand(true) === "add") { } } }