class ApplicationEmojiManager

export class ApplicationEmojiManager extends CachedManager<Snowflake, ApplicationEmoji, EmojiResolvable>

Manages API methods for ApplicationEmojis and stores their cache.

application : ClientApplication

The application this manager belongs to

readonly
cache : Collection<Key, Holds>

The cache of items for this manager.

Inherited from: DataManager

readonly
client : Client

The client that instantiated this Manager

Inherited from: BaseManager

readonly
holds : Constructable<Holds>

The data structure belonging to this manager.

Inherited from: DataManager

Creates a new custom emoji of the application.

Examples:
// Create a new emoji from a URL
application.emojis.create({ attachment: 'https://i.imgur.com/w3duR07.png', name: 'rip' })
  .then(emoji => console.log(`Created new emoji with name ${emoji.name}!`))
  .catch(console.error);
// Create a new emoji from a file on your computer
application.emojis.create({ attachment: './memes/banana.png', name: 'banana' })
  .then(emoji => console.log(`Created new emoji with name ${emoji.name}!`))
  .catch(console.error);

Returns: The created emoji

delete() : Promise<void>

Deletes an emoji.

Obtains one or more emojis from Discord, or the emoji cache if they're already available.

Examples:
// Fetch all emojis from the application
message.application.emojis.fetch()
  .then(emojis => console.log(`There are ${emojis.size} emojis.`))
  .catch(console.error);
// Fetch a single emoji
message.application.emojis.fetch('222078108977594368')
  .then(emoji => console.log(`The emoji name is: ${emoji.name}`))
  .catch(console.error);

fetchAuthor() : Promise<User>

Fetches the author for this emoji

resolve(
idOrInstance: Holds
) : Holds

Resolves a data entry to a data Object.

Returns: An instance from this Manager

resolveId(
idOrInstance: Key | Holds
) : Key

Resolves a data entry to an instance id.

valueOf() : Collection<Key, Holds>

Inherited from: DataManager