mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 13:14:06 +01:00
16 lines
506 B
TypeScript
16 lines
506 B
TypeScript
/// <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>;
|