mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
12 lines
367 B
TypeScript
12 lines
367 B
TypeScript
|
import {ConfigClass} from "../../../common/config/Config";
|
||
|
import {Utils} from "../../../common/Utils";
|
||
|
|
||
|
declare module ServerInject {
|
||
|
export var ConfigInject;
|
||
|
}
|
||
|
|
||
|
export var Config = new ConfigClass();
|
||
|
|
||
|
if (typeof ServerInject !== "undefined" && typeof ServerInject.ConfigInject !== "undefined") {
|
||
|
Utils.updateKeys(Config.Client, ServerInject.ConfigInject);
|
||
|
}
|