blob: 9e42e5d032c315ed3693fa517178e5153b313e81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import type { BushClient } from '#lib';
import { Emoji } from 'discord.js';
import type { RawEmojiData } from 'discord.js/typings/rawDataTypes';
/**
* Represents an emoji, see {@link GuildEmoji} and {@link ReactionEmoji}.
*/
export class BushEmoji extends Emoji {
public declare readonly client: BushClient;
public constructor(client: BushClient, emoji: RawEmojiData) {
super(client, emoji);
}
}
|