UNPKG

@evolvejs/core

Version:

An advanced Discord API wrapper with TS and JS support

11 lines (10 loc) 460 B
import { BaseEvent } from "./BaseEvent"; import { EvolveClient } from "../EvolveClient"; import { Emoji } from "../../Structures/Guild/Emoji"; import { Guild } from "../../Structures/Guild/Guild"; import { Objex } from "@evolvejs/objex"; export declare class GuildEmojiEvents extends BaseEvent { emoji: Objex<string | null, Emoji>; guild: Guild; constructor(client: EvolveClient, emoji: Objex<string | null, Emoji>, guild: Guild, shard: number); }