summary refs log tree commit diff
path: root/gateway/src/schema/Emoji.ts
blob: 413b83593a8edb174be76bb5cce465d519e6bc1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export const EmojiSchema = {
	name: String, // the name of the emoji
	$id: String, // the id of the emoji
	animated: Boolean, // whether this emoji is animated
};

export interface EmojiSchema {
	name: string;
	id?: string;
	animated: Boolean;
}