mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 13:14:06 +01:00
19 lines
545 B
TypeScript
19 lines
545 B
TypeScript
/// <reference path="../util/MongoBigInt.d.ts" />
|
|
import { Schema, Document } from "mongoose";
|
|
export interface Role extends Document {
|
|
id: bigint;
|
|
guild_id: bigint;
|
|
color: number;
|
|
hoist: boolean;
|
|
managed: boolean;
|
|
mentionable: boolean;
|
|
name: string;
|
|
permissions: bigint;
|
|
position: number;
|
|
tags?: {
|
|
bot_id?: bigint;
|
|
};
|
|
}
|
|
export declare const RoleSchema: Schema<Document<any>, import("mongoose").Model<Document<any>>, undefined>;
|
|
export declare const RoleModel: import("mongoose").Model<Role>;
|