Interface CreateEmoji

interface CreateEmoji {
    data: string | Image;
    name: string;
    roles?: string[];
}

Properties

Properties

data: string | Image

Image data in base64 data uri format, or a image instance

name: string
roles?: string[]

Roles that can use the emoji

Generated using TypeDoc