import { Command } from 'discord-akairo'; import { Message } from 'discord.js'; export default class PingBot extends Command { public constructor() { super('ping', { aliases: ['ping'], category: 'bot', description: { content: 'Check the latency of the ping to the Discord API.', usage: '', examples: [ '' ] }, ratelimit: 3 }); } public exec(msg: Message): Promise { return msg.channel.send(`Pong! \`${this.client.ws.ping}ms\`.`); } }