summary refs log tree commit diff
path: root/dist/util/Config.d.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-06 23:55:26 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-06 23:55:26 +0200
commit011251868d4ec0c4d6cda4509d38e09d7d331cf2 (patch)
tree2c4aa589d4fee812e116edca71680071e3b6b2ef /dist/util/Config.d.ts
parent:art: remove _id and __v from response (diff)
parentMerge pull request #2 from afeuerstein/main (diff)
downloadserver-011251868d4ec0c4d6cda4509d38e09d7d331cf2.tar.xz
Merge branch 'main' of https://github.com/discord-open-source/discord-server-util into main
Diffstat (limited to 'dist/util/Config.d.ts')
-rw-r--r--dist/util/Config.d.ts21
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>;