fixed typo in Ban.ts

This commit is contained in:
xnacly 2021-02-21 19:09:27 +01:00
parent 5aee359cf3
commit 5db5573296
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -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;
}