summary refs log tree commit diff
path: root/dist/models/Emoji.d.ts
blob: 91c1abfe809d73232a2b9c41ba5df94b31188e4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// <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>;