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

index 09f3ebb1..00000000 --- a/src/Schema/Emoji.ts +++ /dev/null
@@ -1,11 +0,0 @@ -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; -}