diff options
author | 2022-07-05 12:01:19 -0400 | |
---|---|---|
committer | 2022-07-05 09:26:58 -0700 | |
commit | 5d4fbf7f020ed7134b4f447a8119e5a3718fcbb0 (patch) | |
tree | 528cd7f9118c0a55d06372e8c77a62e5d9429312 /examples/discord-interactions/commands | |
parent | 4a927e09b7cb3c22560599184c675bb185535f60 (diff) | |
download | bun-5d4fbf7f020ed7134b4f447a8119e5a3718fcbb0.tar.gz bun-5d4fbf7f020ed7134b4f447a8119e5a3718fcbb0.tar.zst bun-5d4fbf7f020ed7134b4f447a8119e5a3718fcbb0.zip |
TLA & typescript
Diffstat (limited to 'examples/discord-interactions/commands')
-rw-r--r-- | examples/discord-interactions/commands/hello.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/discord-interactions/commands/hello.js b/examples/discord-interactions/commands/hello.js index 61d92cf82..df94931ff 100644 --- a/examples/discord-interactions/commands/hello.js +++ b/examples/discord-interactions/commands/hello.js @@ -1,6 +1,6 @@ const { SlashCommand, CommandOptionType } = require('slash-create'); -module.exports = class HelloCommand extends SlashCommand { +export default class HelloCommand extends SlashCommand { constructor(creator) { super(creator, { name: 'hello', |