From f920803002e5cac5c6f18dede4d5802b40cc923d Mon Sep 17 00:00:00 2001
From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com>
Date: Fri, 19 Feb 2021 15:34:52 +0100
Subject: :wrench: build
---
dist/models/Ban.d.ts | 10 ++++++++++
1 file changed, 10 insertions(+)
create mode 100644 dist/models/Ban.d.ts
(limited to 'dist/models/Ban.d.ts')
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 @@
+///
+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, import("mongoose").Model>, undefined>;
+export declare const BanModel: import("mongoose").Model;
--
cgit 1.5.1