Emoji
classe · Source
Represents an emoji, see GuildEmoji and ReactionEmoji.
Extends: Base
Properties
animated
animated: boolean
Whether or not the emoji is animated Source
name
name: string
The emoji's name Source
id
id: Snowflake
The emoji's id Source
deleted
deleted: boolean
Whether or not the structure has been deleted Source
identifier
identifier: string
The identifier of this emoji, used for message reactions Source
url
url: string
The URL to the emoji file if it's a custom emoji Source
createdTimestamp
createdTimestamp: number
The timestamp the emoji was created at, or null if unicode Source
createdAt
createdAt: Date
The time the emoji was created at, or null if unicode Source
client
client: Client
The client that instantiated this Source
Methods
toString
toString(): string
When concatenated with a string, this automatically returns the text required to form a graphical emoji on Discord instead of the Emoji object. Returns: string
js
// Send a custom emoji from a guild:
const emoji = guild.emojis.cache.first();
msg.channel.send(`Hello! ${emoji}`);js
// Send the emoji used in a reaction to the channel the reaction is part of
reaction.message.channel.send(`The emoji used was: ${reaction.emoji}`);