summary refs log tree commit diff
path: root/dist/gateway/src/schema/Emoji.d.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-10 20:59:58 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-10 20:59:58 +0100
commit3d54ed476240702812caf0b6e1ce94bfb0329cb5 (patch)
tree9f928dee5023de75b22d6b99c25c3c3fd967da7f /dist/gateway/src/schema/Emoji.d.ts
parentexport event (diff)
downloadserver-3d54ed476240702812caf0b6e1ce94bfb0329cb5.tar.xz
fix models + move schemas in api and gateway
Diffstat (limited to 'dist/gateway/src/schema/Emoji.d.ts')
-rw-r--r--dist/gateway/src/schema/Emoji.d.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/dist/gateway/src/schema/Emoji.d.ts b/dist/gateway/src/schema/Emoji.d.ts
new file mode 100644

index 00000000..da4770e9 --- /dev/null +++ b/dist/gateway/src/schema/Emoji.d.ts
@@ -0,0 +1,10 @@ +export declare const EmojiSchema: { + name: StringConstructor; + $id: BigIntConstructor; + animated: BooleanConstructor; +}; +export interface EmojiSchema { + name: string; + id?: bigint; + animated: Boolean; +}