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.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/dist/models/Role.d.ts b/dist/models/Role.d.ts

index 6a3f1669..d6765283 100644 --- a/dist/models/Role.d.ts +++ b/dist/models/Role.d.ts
@@ -1,8 +1,8 @@ /// <reference path="../util/MongoBigInt.d.ts" /> import { Schema, Document } from "mongoose"; export interface Role { - id: bigint; - guild_id: bigint; + id: string; + guild_id: string; color: number; hoist: boolean; managed: boolean; @@ -11,11 +11,11 @@ export interface Role { permissions: bigint; position: number; tags?: { - bot_id?: bigint; + bot_id?: string; }; } export interface RoleDocument extends Document, Role { - id: bigint; + id: string; } export declare const RoleSchema: Schema<Document<any>, import("mongoose").Model<Document<any>>, undefined>; export declare const RoleModel: import("mongoose").Model<RoleDocument>;