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

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