summary refs log tree commit diff
path: root/dist/models/Emoji.d.ts
blob: 9e53cc7239a2e6bb1eb7abeca51b28310ab15660 (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: string;
    animated: boolean;
    available: boolean;
    guild_id: string;
    managed: boolean;
    name: string;
    require_colons: boolean;
    url: string;
    roles: string[];
}
export declare const EmojiSchema: Schema<Document<any>, import("mongoose").Model<Document<any>>, undefined>;
export declare const EmojiModel: import("mongoose").Model<Emoji>;