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

index 81570e17..da4770e9 100644 --- a/dist/Schema/Emoji.d.ts +++ b/dist/Schema/Emoji.d.ts
@@ -1,5 +1,10 @@ export declare const EmojiSchema: { name: StringConstructor; - id: BigIntConstructor; + $id: BigIntConstructor; animated: BooleanConstructor; }; +export interface EmojiSchema { + name: string; + id?: bigint; + animated: Boolean; +}