🐛 fix(TextBasedChannel.js): change send method name from send to sendSlash 🐛 fix(index.d.ts): change applicationId parameter type from ApplicationCommandTypes to Snowflake in searchInteraction method

This commit is contained in:
hocsinhgioitoan
2023-04-19 17:25:53 +07:00
parent 9c9f573dc1
commit 036ebd9224
2 changed files with 2 additions and 2 deletions

View File

@@ -452,7 +452,7 @@ class TextBasedChannel {
* .catch(console.error);
* @example
* // Send a remote file
* channel.send('botid', 'emoji upload', 'https://cdn.discordapp.com/icons/222078108977594368/6e1019b3179d71046e463a75915e7244.png?size=2048', 'test')
* channel.sendSlash('botid', 'emoji upload', 'https://cdn.discordapp.com/icons/222078108977594368/6e1019b3179d71046e463a75915e7244.png?size=2048', 'test')
* .then(console.log)
* .catch(console.error);
* @see {@link https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/SlashCommand.md}