summary refs log tree commit diff
path: root/dist/models/Emoji.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'dist/models/Emoji.d.ts')
-rw-r--r--dist/models/Emoji.d.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/dist/models/Emoji.d.ts b/dist/models/Emoji.d.ts
deleted file mode 100644

index 91c1abfe..00000000 --- a/dist/models/Emoji.d.ts +++ /dev/null
@@ -1,15 +0,0 @@ -/// <reference path="../util/MongoBigInt.d.ts" /> -import { Schema, Document } from "mongoose"; -export interface Emoji extends Document { - id: bigint; - animated: boolean; - available: boolean; - guild_id: bigint; - managed: boolean; - name: string; - require_colons: boolean; - url: string; - roles: bigint[]; -} -export declare const EmojiSchema: Schema<Document<any>, import("mongoose").Model<Document<any>>, undefined>; -export declare const EmojiModel: import("mongoose").Model<Emoji>;