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

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