keryx 0.11.1 → 0.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.ts +1 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -38,7 +38,7 @@ if (!globalThis.api) {
|
|
|
38
38
|
// @ts-ignore — augmented API properties (db, redis, etc.) are set later by initializers at runtime
|
|
39
39
|
globalThis.api = new API();
|
|
40
40
|
globalThis.logger = globalThis.api.logger;
|
|
41
|
-
globalThis.config = Config;
|
|
41
|
+
globalThis.config = Config as KeryxConfig;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
/** The global API singleton. All framework state (actions, db, redis, etc.) is accessed through this object. */
|