10 lines
313 B
TypeScript
10 lines
313 B
TypeScript
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<void>{}
|
|
};
|
|
|
|
// export const command = new Test();
|