mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-11 01:47:09 +00:00
fixed typo in Ban.ts
This commit is contained in:
Vendored
+1
-1
@@ -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;
|
||||
}
|
||||
|
||||
+1
-1
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user