import {CommandInteraction} from 'discord.js'; import {Command} from '../../classes/command'; class Test extends Command{ get name(){return "test";} get description(){return "Testing some features.";} async execute(interaction: CommandInteraction): Promise{} }; // export const command = new Test();