summary refs log tree commit diff
path: root/src/Schema/Emoji.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/Schema/Emoji.ts')
-rw-r--r--src/Schema/Emoji.ts8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Schema/Emoji.ts b/src/Schema/Emoji.ts

index ebb9afdd..09f3ebb1 100644 --- a/src/Schema/Emoji.ts +++ b/src/Schema/Emoji.ts
@@ -1,5 +1,11 @@ export const EmojiSchema = { name: String, // the name of the emoji - id: BigInt, // the id 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; +}