import {BaseInteraction, ChatInputCommandInteraction} from "discord.js" export function isChatInputCommand(x: BaseInteraction): x is ChatInputCommandInteraction { return x.isChatInputCommand() }