Skip to main content

stealEmoji

How cool is stealing an emoji from another server ? Feel the power with this function

DEPRECATED

This function is deprecated !​

stealEmoji() function is deprecated and removed forever ! Please use other package or use our source code from github.

Implementation​

simplydjs.stealEmoji(interaction, {
// options (Optional)
})

Output​

steal emoji

Types​

simplydjs.stealEmoji(
msgOrInt: ExtendedMessage | ExtendedInteraction,
options: stealOptions
): Promise<void>

Options​

stealOptions​

ParameterTypeRequiredDefaultDescription
strictboolean❌falseEnables strict mode in stealEmoji
embedCustomizableEmbed❌default embedPass a CustomizableEmbed Object to customize the embed
emojistring❌noneThe emoji that is getting stealed
namestring❌noneThe name of the new emoji that is being created from old one
export type stealOptions = {
embed?: CustomizableEmbed;
emoji?: string;
name?: string;
strict?: boolean;
};