summary refs log tree commit diff
path: root/src/Schema/Emoji.ts
blob: ebb9afdd32b038cce0be2084c8dc2a6829357b9b (plain) (blame)
1
2
3
4
5
export const EmojiSchema = {
	name: String, // the name of the emoji
	id: BigInt, // the id of the emoji
	animated: Boolean, // whether this emoji is animated
};