discord / Commands /ping.ts
Twan07's picture
Upload 8 files
67bf4ee verified
raw
history blame contribute delete
503 Bytes
import { ChatInputCommandInteraction, Message } from "discord.js";
export default {
data: {
name: "ping",
description: "Replies with Pong!",
toJSON() {
return { name: "ping", description: "Replies with Pong!" };
},
},
ownersOnly: false,
async execute(input: ChatInputCommandInteraction | Message) {
if (input instanceof Message) {
await input.reply("๐Ÿ“ Pong! (prefix command)");
} else {
await input.reply("๐Ÿ“ Pong! (slash command)");
}
},
};