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
strictbooleanfalseEnables strict mode in stealEmoji
embedCustomizableEmbeddefault embedPass a CustomizableEmbed Object to customize the embed
emojistringnoneThe emoji that is getting stealed
namestringnoneThe name of the new emoji that is being created from old one
export type stealOptions = {
embed?: CustomizableEmbed;
emoji?: string;
name?: string;
strict?: boolean;
};