1 files changed, 0 insertions, 21 deletions
diff --git a/dist/util/Config.d.ts b/dist/util/Config.d.ts
deleted file mode 100644
index efab99c2..00000000
--- a/dist/util/Config.d.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-/// <reference path="MongoBigInt.d.ts" />
-import { Schema, Document } from "mongoose";
-import "missing-native-js-functions";
-declare const _default: {
- init: (defaultOpts?: any) => Promise<import("mongodb").UpdateWriteOpResult>;
- getAll: () => DefaultOptions;
- setAll: (val: any) => Promise<import("mongodb").UpdateWriteOpResult>;
-};
-export default _default;
-export declare const DefaultOptions: {
- api: {};
- gateway: {};
- voice: {};
-};
-export interface DefaultOptions extends Document {
- api?: any;
- gateway?: any;
- voice?: any;
-}
-export declare const ConfigSchema: Schema<Document<any>, import("mongoose").Model<Document<any>>, undefined>;
-export declare const ConfigModel: import("mongoose").Model<DefaultOptions>;
|