masto
    Preparing search index...

    Interface CustomEmoji

    Represents a custom emoji.

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

    Properties

    category?: string | null

    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.