Skip to main content
Module

x/coward/src/structures/ReactionStandardEmoji.ts

πŸ” Coward is a Deno module for easy interaction with the Discord API.
Latest
File
import { Client } from "../Client.ts";
/** Class representing a standard reaction emoji */export class ReactionStandardEmoji { public id: string; public name: string;
constructor(data: any, protected client: Client) { this.id = data.id; this.name = data.name || null; }}