GuildEmoji

Signature

export declare class GuildEmoji extends Emoji

Properties

get createdTimestamp(): number;

Create a timestamp for the current object.

get createdAt(): Date;

createdAt gets the creation Date instace of the current object.

roles?: string[] | undefined;
name: string | null;

Methods

delete(reason?: string): Promise<void>;
toString(): `<:${string}:${string}>` | `<a:${string}:${string}>`;

Returns a string representation of an object.

toJSON(): {    id: string;    name: string | null;    animated: boolean;};