From 84d714324ad65de94cfb3076daa8f6622a54e438 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sat, 6 Feb 2021 15:35:02 +0100 Subject: :sparkles: Schema interfaces --- dist/Schema/Emoji.d.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'dist/Schema/Emoji.d.ts') 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; +} -- cgit 1.5.1