summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-05 16:20:34 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-05 16:20:34 +0100
commit7e3d6d1d9d53cedd329b59529575d67198826b50 (patch)
tree1a8f0c9ba258d423ef8dca5996e61602ad31b8f9 /src
parent:art: rename Database -> db (diff)
downloadserver-7e3d6d1d9d53cedd329b59529575d67198826b50.tar.xz
:bug: make default options optional
Diffstat (limited to 'src')
-rw-r--r--src/Config.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Config.ts b/src/Config.ts

index 0d06f101..b22e88e0 100644 --- a/src/Config.ts +++ b/src/Config.ts
@@ -18,9 +18,9 @@ export default { }; export interface DefaultOptions { - api: any; - gateway: any; - voice: any; + api?: any; + gateway?: any; + voice?: any; } export const DefaultOptions: DefaultOptions = {