2 files changed, 2 insertions, 2 deletions
diff --git a/dist/models/Ban.d.ts b/dist/models/Ban.d.ts
index 8960ca52..a4357d5c 100644
--- a/dist/models/Ban.d.ts
+++ b/dist/models/Ban.d.ts
@@ -3,7 +3,7 @@ import { Schema, Document } from "mongoose";
export interface Ban extends Document {
user_id: bigint;
guild_id: bigint;
- executor_id: BigInt;
+ executor_id: bigint;
ip: string;
reason?: string;
}
diff --git a/src/models/Ban.ts b/src/models/Ban.ts
index 0d8afd0e..41db3f51 100644
--- a/src/models/Ban.ts
+++ b/src/models/Ban.ts
@@ -4,7 +4,7 @@ import db from "../util/Database";
export interface Ban extends Document {
user_id: bigint;
guild_id: bigint;
- executor_id: BigInt,
+ executor_id: bigint;
ip: string;
reason?: string;
}
|