Newer
Older
percord / src / schema / Emoji.ts
@Flam3rboy Flam3rboy on 6 Apr 2021 246 bytes :art: Convert id bigint to string
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;
}