1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-22 10:41:34 +02:00
server/dist/models/Emoji.d.ts

16 lines
506 B
TypeScript
Raw Normal View History

2021-02-13 14:15:59 +01:00
/// <reference path="../util/MongoBigInt.d.ts" />
import { Schema, Document } from "mongoose";
export interface Emoji extends Document {
2021-04-06 18:01:49 +02:00
id: string;
2021-02-05 22:01:01 +01:00
animated: boolean;
available: boolean;
2021-04-06 18:01:49 +02:00
guild_id: string;
2021-02-05 22:01:01 +01:00
managed: boolean;
name: string;
require_colons: boolean;
url: string;
2021-04-06 18:01:49 +02:00
roles: string[];
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>;