summary refs log tree commit diff
path: root/dist/models/Role.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'dist/models/Role.d.ts')
-rw-r--r--dist/models/Role.d.ts21
1 files changed, 0 insertions, 21 deletions
diff --git a/dist/models/Role.d.ts b/dist/models/Role.d.ts
deleted file mode 100644
index d6765283..00000000
--- a/dist/models/Role.d.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-/// <reference path="../util/MongoBigInt.d.ts" />
-import { Schema, Document } from "mongoose";
-export interface Role {
-    id: string;
-    guild_id: string;
-    color: number;
-    hoist: boolean;
-    managed: boolean;
-    mentionable: boolean;
-    name: string;
-    permissions: bigint;
-    position: number;
-    tags?: {
-        bot_id?: string;
-    };
-}
-export interface RoleDocument extends Document, Role {
-    id: string;
-}
-export declare const RoleSchema: Schema<Document<any>, import("mongoose").Model<Document<any>>, undefined>;
-export declare const RoleModel: import("mongoose").Model<RoleDocument>;