summary refs log tree commit diff
path: root/dist/models/Ban.d.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-19 15:34:52 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-19 15:34:52 +0100
commitf920803002e5cac5c6f18dede4d5802b40cc923d (patch)
tree8bd9b1f07597d9096e6d6e23d6a5d12a56a633a5 /dist/models/Ban.d.ts
parent:sparkles: Ban Model (diff)
downloadserver-f920803002e5cac5c6f18dede4d5802b40cc923d.tar.xz
:wrench: build
Diffstat (limited to 'dist/models/Ban.d.ts')
-rw-r--r--dist/models/Ban.d.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/dist/models/Ban.d.ts b/dist/models/Ban.d.ts
new file mode 100644

index 00000000..2f6399d7 --- /dev/null +++ b/dist/models/Ban.d.ts
@@ -0,0 +1,10 @@ +/// <reference path="../util/MongoBigInt.d.ts" /> +import { Schema, Document } from "mongoose"; +export interface Ban extends Document { + user_id: bigint; + guild_id: bigint; + ip: string; + reason?: string; +} +export declare const BanSchema: Schema<Document<any>, import("mongoose").Model<Document<any>>, undefined>; +export declare const BanModel: import("mongoose").Model<Ban>;