summary refs log tree commit diff
path: root/dist/models/Ban.d.ts
diff options
context:
space:
mode:
authorxnacly <matteogropp@gmail.com>2021-04-08 15:56:11 +0200
committerxnacly <matteogropp@gmail.com>2021-04-08 15:56:11 +0200
commitf01fe1ba3ac22d33ecf61659d1f65c5ac1ba4e17 (patch)
tree1a3361f31dbbf700efb84513c95388cfbfb2e58f /dist/models/Ban.d.ts
parentadded hasThrow (diff)
parent:bug: move dev dependencies to normal (diff)
downloadserver-f01fe1ba3ac22d33ecf61659d1f65c5ac1ba4e17.tar.xz
Merge branch 'main' of https://github.com/fosscord/fosscord-server-util
Diffstat (limited to 'dist/models/Ban.d.ts')
-rw-r--r--dist/models/Ban.d.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/dist/models/Ban.d.ts b/dist/models/Ban.d.ts
deleted file mode 100644

index a4357d5c..00000000 --- a/dist/models/Ban.d.ts +++ /dev/null
@@ -1,11 +0,0 @@ -/// <reference path="../util/MongoBigInt.d.ts" /> -import { Schema, Document } from "mongoose"; -export interface Ban extends Document { - user_id: bigint; - guild_id: bigint; - executor_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>;