Skip to main content
Module

x/coward/src/structures/ReactionCustomEmoji.ts

πŸ” Coward is a Deno module for easy interaction with the Discord API.
Latest
File
import { Client } from "../Client.ts";import { ReactionStandardEmoji } from "./ReactionStandardEmoji.ts"
/** * Class representing a custom reaction emoji * @extends ReactionStandardEmoji */export class ReactionCustomEmoji extends ReactionStandardEmoji { public animateable: boolean;
constructor(data: any, protected client: Client) { super(data, client); this.animateable = data.animateable || false; }}