Newer
Older
percord / src / schema / Emoji.ts
@Flam3rboy Flam3rboy on 10 Feb 2021 246 bytes move Schema from util to gateway
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;
}