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.ts13
1 files changed, 8 insertions, 5 deletions
diff --git a/dist/models/Emoji.d.ts b/dist/models/Emoji.d.ts

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