Interface CustomEmoji

Represents a custom emoji.

interface CustomEmoji {
    category?: null | string;
    shortcode: string;
    staticUrl: string;
    url: string;
    visibleInPicker: boolean;
}

Properties

category?: null | string

Used for sorting custom emoji in the picker.

shortcode: string

The name of the custom emoji.

staticUrl: string

A link to a static copy of the custom emoji.

url: string

A link to the custom emoji.

visibleInPicker: boolean

Whether this Emoji should be visible in the picker or unlisted.