summary refs log tree commit diff
path: root/src/models/Emoji.ts
blob: 1facc252c15e2357e7724d231b11903b0d8f02a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
export interface Emoji {
	allNamesString: string; // e.g. :thonk:
	animated: boolean;
	available: boolean;
	guildId: bigint;
	id: bigint;
	managed: boolean;
	name: string;
	require_colons: boolean;
	url: string;
	roles: [];
}