summary refs log tree commit diff
path: root/src/util
diff options
context:
space:
mode:
authorDiego Magdaleno <diegomagdaleno@protonmail.com>2021-05-23 13:46:26 -0500
committerDiego Magdaleno <diegomagdaleno@protonmail.com>2021-05-23 13:46:26 -0500
commita2a22c9afa9231c86133ba043b8111520765763d (patch)
tree0a5524e67f305aca11ef507139d80b43f37cf8da /src/util
parentUpdate: update server-util to latest (diff)
downloadserver-a2a22c9afa9231c86133ba043b8111520765763d.tar.xz
Fix: No more typecasting required
Diffstat (limited to 'src/util')
-rw-r--r--src/util/Config.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/Config.ts b/src/util/Config.ts

index 138e1c2f..8489888c 100644 --- a/src/util/Config.ts +++ b/src/util/Config.ts
@@ -33,4 +33,4 @@ const ajv = new Ajv(); const validator = ajv.compile(schema); const configPath = getConfigPathForFile("fosscord", "gateway", ".json"); -export const gatewayConfig = new Config({path: configPath, schemaValidator: validator, schema: schema}) \ No newline at end of file +export const gatewayConfig = new Config<DefaultOptions>({path: configPath, schemaValidator: validator, schema: schema}) \ No newline at end of file