You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove useless resolving. Resolving is not needed in most functions/methods.
// This is not neededmessages.edit(message, ...);// You can instead use one of the followingmessage.edit(...);messages.edit(message.id, ...);// These are not neededchannel.send('content');channel.send([embed]);// Instead, you can use thesechannel.send({content: 'content', ...options});channel.send({embeds: [embed], ...options});
Package
guilded.ts
Description
Remove useless resolving. Resolving is not needed in most functions/methods.
Solution
Remove support for unneeded resolving.
Alternative Solutions
No response