summary refs log tree commit diff
path: root/dist/models/Ban.d.ts
diff options
context:
space:
mode:
authorxnacly <matteogropp@gmail.com>2021-02-21 19:09:27 +0100
committerxnacly <matteogropp@gmail.com>2021-02-21 19:09:27 +0100
commit5db5573296d1721aa573ca8e97d544176d485d72 (patch)
tree6d40021f073c79ca954f9a6c6f911a1b593e0207 /dist/models/Ban.d.ts
parentBanModel Update (diff)
downloadserver-5db5573296d1721aa573ca8e97d544176d485d72.tar.xz
fixed typo in Ban.ts
Diffstat (limited to 'dist/models/Ban.d.ts')
-rw-r--r--dist/models/Ban.d.ts2
1 files changed, 1 insertions, 1 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; }