spacebar/src/Schema/Emoji.ts
2021-02-06 15:35:02 +01:00

12 lines
246 B
TypeScript

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;
}