fixed typo in Ban.ts
This commit is contained in:
parent
5aee359cf3
commit
5db5573296
2
dist/models/Ban.d.ts
vendored
2
dist/models/Ban.d.ts
vendored
@ -3,7 +3,7 @@ import { Schema, Document } from "mongoose";
|
|||||||
export interface Ban extends Document {
|
export interface Ban extends Document {
|
||||||
user_id: bigint;
|
user_id: bigint;
|
||||||
guild_id: bigint;
|
guild_id: bigint;
|
||||||
executor_id: BigInt;
|
executor_id: bigint;
|
||||||
ip: string;
|
ip: string;
|
||||||
reason?: string;
|
reason?: string;
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@ import db from "../util/Database";
|
|||||||
export interface Ban extends Document {
|
export interface Ban extends Document {
|
||||||
user_id: bigint;
|
user_id: bigint;
|
||||||
guild_id: bigint;
|
guild_id: bigint;
|
||||||
executor_id: BigInt,
|
executor_id: bigint;
|
||||||
ip: string;
|
ip: string;
|
||||||
reason?: string;
|
reason?: string;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user