summary refs log tree commit diff
path: root/dist/Schema/Emoji.d.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-06 15:35:02 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-06 15:35:02 +0100
commit84d714324ad65de94cfb3076daa8f6622a54e438 (patch)
tree563a0686d87db0bba3d6e1ce3aa2f561dfe58998 /dist/Schema/Emoji.d.ts
parentupdate missing-native-js-functions version (diff)
downloadserver-84d714324ad65de94cfb3076daa8f6622a54e438.tar.xz
:sparkles: Schema interfaces
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; +}