summary refs log tree commit diff
path: root/dist/gateway/src/schema/Emoji.d.ts
diff options
context:
space:
mode:
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; +}