19 lines
422 B
TypeScript
19 lines
422 B
TypeScript
import { Command } from '../structures/command'
|
|
import { RunOptions } from '../types/commandTypes'
|
|
export default new Command({
|
|
name: 'echo',
|
|
description: 'Echoes a text',
|
|
options: [
|
|
{
|
|
name: 'echo',
|
|
description: 'The text to echo',
|
|
type: 'STRING',
|
|
required: true
|
|
}
|
|
],
|
|
run: async (interaction: RunOptions) => {
|
|
console.log('echo called')
|
|
interaction.interaction.reply(interaction.toString())
|
|
}
|
|
})
|