2021-02-13 14:15:59 +01:00
|
|
|
/// <reference path="../util/MongoBigInt.d.ts" />
|
|
|
|
import { Schema, Document } from "mongoose";
|
|
|
|
export interface Emoji extends Document {
|
|
|
|
id: bigint;
|
2021-02-05 22:01:01 +01:00
|
|
|
animated: boolean;
|
|
|
|
available: boolean;
|
2021-02-13 14:15:59 +01:00
|
|
|
guild_id: bigint;
|
2021-02-05 22:01:01 +01:00
|
|
|
managed: boolean;
|
|
|
|
name: string;
|
|
|
|
require_colons: boolean;
|
|
|
|
url: string;
|
2021-02-13 14:15:59 +01:00
|
|
|
roles: bigint[];
|
2021-02-05 22:01:01 +01:00
|
|
|
}
|
2021-02-13 14:15:59 +01:00
|
|
|
export declare const EmojiSchema: Schema<Document<any>, import("mongoose").Model<Document<any>>, undefined>;
|
|
|
|
export declare const EmojiModel: import("mongoose").Model<Emoji>;
|